String uid = request.getParameter("上个页面值的名字")//接受上个页面的值
try {
Connection con=null
Class.forName("org.gjt.mm.mysql.Driver")
con = DriverManager.getConnection(
"jdbc:mysql://localhost/数据库名字", "用户", "密码")
Statement sta = con.createStatement()
String sql2="update的更新sql语句"
sta.execute(sql2)
sta.close()
}
catch (SQLException ex1)
{
System.out.print(ex1.getMessage())
}
用executeUpdate(SQL语句),有DELETE,EDIT,DROP什么的,具体见SQL命令大全:
http://edu.codepub.com/2010/0128/20192.php
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)