Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("Jdbc:Odbc:你的数据源");
PreparedStatement ps=con.preparedstatement(insert into 表名 values(?,?,?))
ps.setString(1,插入内容);
ps.setString(2,插入内容);
ps.setString(3,插入内容);//上面有几个问号,这里就要set几个值
ps.excuteUpdate();
////////////////////////以上需配置数据源
Class.forName("com.microsoft.jdbc.sqlserver.SqlServerDriver");
Connection con=DriverManager.getConnection("jdbc:microsoft:
http://localHost:1433;datebasename=你的数据源名字","sa","sa");
//////////////////////////////
PreparedStatement ps=con.perparedstatement(insert into 表名 values(?,?,?) )
ps.excuteUpdate();
ps.setString(1,插入内容);
ps.setString(2,插入内容);
ps.setString(3,插入内容);//上面有几个问号,这里就要set几个值
ps.excuteUpdate();
///////////////////////////////使用存储过程
CallableStatement cs=cs.callable..({call 存储过程名});
//////////////////以上是直连,不用配置数据源
不知道你问的是不是这个!