JAVA连接数据库实例

时间:2012-01-08 06:31:56
【文件属性】:

文件名称: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();


网友评论

  • 该资源不错,教会了我怎样连接数据库,谢谢!