首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

求JAVA代码…增删改查SQL2000数据库!解决思路

2012-01-06 
求JAVA代码……增删改查SQL2000数据库!给个范例就行 ,做个简单的教育经历管理系统,就几张表要简单的!越简单

求JAVA代码……增删改查SQL2000数据库!
给个范例就行 ,做个简单的教育经历管理系统,就几张表

要简单的!越简单越好 
尤其修改删除

[解决办法]

Java code
public class UserSystem { public static void main(String args[]){  UserSystemDAO UserSystemDAO=new UserSystemDAO(); }}   import java.sql.*;public class UserSystemDAO {  String insertSql="insert into table_usersystem_dictionary values(?,?,?,?)";  UserSystemDAO(){  executeSQL(); } private void executeSQL(){  UserSystemDB userSystemDB=new UserSystemDB();    PreparedStatement preparedStatement=null;    Connection connection=userSystemDB.createConnection();    try{   preparedStatement=connection.prepareStatement(insertSql);   preparedStatement.setString(1, "95002");   preparedStatement.setString(2,"user");   preparedStatement.setString(3,"shl");   preparedStatement.setString(4,"001");   preparedStatement.addBatch();   preparedStatement.executeBatch();   preparedStatement.close();   System.out.println("Insert success");  }  catch(Exception e){e.printStackTrace();}  finally{   try{    connection.close();   }   catch(Exception e){e.printStackTrace();}  } }}   import java.sql.Connection;import java.sql.DriverManager;public class UserSystemDB {   public Connection createConnection(){  Connection connection=null;  try{     Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();   //String url="jdbc:odbc:argon";   String url="jdbc:microsoft:sqlserver://Localhost:1433;DatabaseName=user";   connection=DriverManager.getConnection(url,"sa","");   System.out.println("JDBC-ODBC的驱动程序注册成功");    }  catch(Exception e){   e.printStackTrace();   System.out.println("找不到驱动程序");  }  return connection; }}
[解决办法]
更新用preparedStatement.update 你看下java基础吧
[解决办法]
更新是这个preparedStatement.excuteupdate 2楼错了 不好意思

热点排行