小白求在java中连接sql server2000的步骤
如题,=.=有大侠赐教么
[最优解释]
Microsoft SQL Server 3.0驱动
String Driver="com.microsoft.sqlserver.jdbc.SQLServerDriver"; //连接SQL数据库的方法
String URL="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=db";//db为数据库名String Username="username";//用户名
String Password="password";//密码
Class.forName(Driver).new Instance();//加载数据可驱动
Connection con=DriverManager.getConnection(URL,UserName,Password);//获得连接