Q. Are we playing God in attempting to clone humans? No, but we sure are playing God in trying to decide what God wants, in trying to ban cloning.

India is facing tremendous challenges due to terrorism for many years and always was requested to be patient and work it out with the neighbors! Wonder why the same policy couldn't have been applied to Iraq? An old but yet unanswered question.

Osama Bin Laden has been finally defined! I am starting to like this guy for his uncannily accurate potrait of the world policitcs.

private static final String accessDBURLPrefix = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ="; private static final String accessDBURLSuffix = ";DriverID=22;READONLY=false}"; // Initialize the JdbcOdbc Bridge Driver static { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); } catch(ClassNotFoundException e) { System.err.println("JdbcOdbc Bridge Driver not found!"); } } /** Creates a Connection to a Access Database */ public static Connection getAccessDBConnection(String filename) throws SQLException { filename = filename.replace('', '/').trim(); String databaseURL = accessDBURLPrefix + filename + accessDBURLSuffix; return DriverManager.getConnection(databaseURL, "", ""); }
Copyright© 2010 Gaea Times