eclipse中使用JDBC通过ODBC连接sqlsever 2005怎么连呢,我刚学...
我的代码是:下面,有错的地方,希望各位大神帮忙指出改正..谢谢了~我用的是sql server 2005,eclipse编译的package test1;
import java.sql.*;
public class test1 {
/**
* @param args
*/
public static void main(String[] args)
{
Connection ct=null;
Statement sm=null;
try
{
//加载驱动。
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//得到连接
ct=DriverManager.getConnection("jdbc:sqlserver://localhost:1433; DatabaseName=asd");
//用于发送sql语句到数据库
sm=ct.createStatement();
//执行。(crud,创建,备份,删除等)
//添加数据
int i=sm.executeUpdate("insert into xinxi values('lala','1043041123','计算机')");
if(i==1)
{
System.out.println("ok");
}
else
{
System.out.println("buok");
}
} catch (Exception e) {
// TODO: handle exception
}
finally{
//关闭资源谁后创建,谁先关闭。
try {
if(sm!=null)
{
sm.close();
}
if(ct!=null)
{
ct.close();
}
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
// TODO Auto-generated method stub
}
}