风故故,也依依

Stand still in the wind.

导航

JDBC连接数据库SQL Server 2000和SQL Server 2005

SQL Server2000和2005的连接代码区别,写连接代码时需要注意2000和2005的不同:  
1、连接SqlServer2000  
      Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();  
      URL   =   "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=test";  
2、连接SqlServer2005  
      Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance();  
      URL   =   "jdbc:sqlserver://localhost:1433;DatabaseName=test";

posted on 2010-04-26 17:28  jadmin  阅读(146)  评论(0编辑  收藏  举报