Java连接数据库并修改内容,Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");//加载驱动器  Connectioncon=DriverManager.getConnection(dbURL,user,password);//获取连接  StringsqlStr="select*fromusers";//SQL查询语句  Statementst=con.createStatement();//获取PreparedStatement对象  ResultSetrs=st.executeQuery(sqlStr);//执行查询  Stri