文件名称:JAVA连接数据库实例
文件大小:4KB
文件格式:JAVA
更新时间:2012-01-08 06:31:56
JAVA
try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); } catch(ClassNotFoundException ce) {System.out.println("SQLException:"+ce.getMessage());} try { Connection con=DriverManager.getConnection("jdbc:odbc:mydb"); Statement stmt=con.createStatement();