展开全部
<%@ page contentType="text/html; charset=gbk" language="java" import="java.sql.*" errorPage="" %>
<%
//你要自己先建一个表单页面,建一个用户名的text和用户id的text。然后post传到这个更新页面
//连接数据库
Class.forName("org.gjt.mm.mysql.Driver");
String url="jdbc:mysql://localhost:3306/jxkh?user=root&password=123"; //这句的数据库名称、用户名和密码改成你自己的。
Connection conn = DriverManager.getConnection(url);
Statement stmt=conn.createStatement();
request.setCharacterEncoding("gbk");
//传过来的参数,用户名和用户id
String username=request.getParameter("username");
String ID=request.getParameter("userid");
PreparedStatement pstmt=null;
String sql2 = "update user set name=? where id=" + ID;
pstmt=conn.prepareStatement(sql2);
pstmt.setString(1,username);
pstmt.executeUpdate();
pstmt.close();
//更新后转到其他页面
response.sendRedirect("result.jsp");
%>
<%
//你要自己先建一个表单页面,建一个用户名的text和用户id的text。然后post传到这个更新页面
//连接数据库
Class.forName("org.gjt.mm.mysql.Driver");
String url="jdbc:mysql://localhost:3306/jxkh?user=root&password=123"; //这句的数据库名称、用户名和密码改成你自己的。
Connection conn = DriverManager.getConnection(url);
Statement stmt=conn.createStatement();
request.setCharacterEncoding("gbk");
//传过来的参数,用户名和用户id
String username=request.getParameter("username");
String ID=request.getParameter("userid");
PreparedStatement pstmt=null;
String sql2 = "update user set name=? where id=" + ID;
pstmt=conn.prepareStatement(sql2);
pstmt.setString(1,username);
pstmt.executeUpdate();
pstmt.close();
//更新后转到其他页面
response.sendRedirect("result.jsp");
%>
展开全部
import java.sql.*;
public class First{
public static void main(String args[])throws Exception{
//1.注册驱动
//管理一组 JDBC 驱动程序的基本服务。
//向 DriverManager 注册给定驱动程序,新加载的驱动程序类应该调用 registerDriver 方法
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
//2.获得连接
//试图建立到给定数据库URL的连接,DriverManager试图从已注册的 JDBC 驱动程序集中选择一
//个适当的驱动程序。
String url="jdbc:oracle:thin:@localhost:1521:orcl";
String user="scott";
String pwd="tiger";
Connection con=DriverManager.getConnection(url,user,pwd);
//3.创建Statement对象,创建一个 Statement 对象来将 SQL 语句发送到数据库。
Statement sta=con.createStatement();
//4.执行返回结果
String sql="update emp set deptno = 20 where ename = 'SMITH' ";
int rs=sta.executeUpdate(sql);
//5.关闭资源
rs.close();
sta.close();
con.close();
}
}
public class First{
public static void main(String args[])throws Exception{
//1.注册驱动
//管理一组 JDBC 驱动程序的基本服务。
//向 DriverManager 注册给定驱动程序,新加载的驱动程序类应该调用 registerDriver 方法
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
//2.获得连接
//试图建立到给定数据库URL的连接,DriverManager试图从已注册的 JDBC 驱动程序集中选择一
//个适当的驱动程序。
String url="jdbc:oracle:thin:@localhost:1521:orcl";
String user="scott";
String pwd="tiger";
Connection con=DriverManager.getConnection(url,user,pwd);
//3.创建Statement对象,创建一个 Statement 对象来将 SQL 语句发送到数据库。
Statement sta=con.createStatement();
//4.执行返回结果
String sql="update emp set deptno = 20 where ename = 'SMITH' ";
int rs=sta.executeUpdate(sql);
//5.关闭资源
rs.close();
sta.close();
con.close();
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询