Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:;Driver={Microsoft Access driver (*.mdb)};DBQ=E:/reginfo.mdb","","");
PreparedStatement s=con.prepareStatement("select * from CustomerInfo where Customer_Name=? and Password=?");
接下来我要用预处理对象来updata数据库里的内容该怎么写!呵呵