时间:2021-05-25
语句对象Statement包含两个主要方法:executeUpdate()方法执行数据的更新操作(添加记录,删除记录,更新记录),executeQuery()方法用来执行数据的查询操作(查询记录)
添加记录
<%@page language="java" contentType="text/html;charset=gb2312"%><%@page import="java.sql.*" %><!DOCTYPE html><html> <head> <title>添加用户记录</title> </head> <body> <% String url = "jdbc:mysql://localhost:3306/javaweb";//连接数据库的url地址 String user = "root";//登录数据库的用户名 String password = "zhangda890126;;";//登录数据库的用户名的密码 Connection conn = null; try{ Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序 conn = DriverManager.getConnection(url,user,password);//链接数据库 }catch(ClassNotFoundException e){ out.println("找不到驱动类");//抛出异常时,提示信息 }catch(SQLException e){ out.println("链接MySQL数据库失败");//处理SQLException异常 } try{ //创建语句对象Statement Statement stmt = conn.createStatement(); String adduser = "INSERT INTO user(userid,username,password) VALUES (null,'James','1234')";//添加用户 stmt.executeUpdate(adduser);//执行语句 }catch(SQLException e){ out.println("添加用户信息失败"); } %> </body></html><html> <head> <title>添加多个用户记录</title> </head> <body> <% String url = "jdbc:mysql://localhost:3306/javaweb";//连接数据库的url地址 String user = "root";//登录数据库的用户名 String password = "zhangda890126;;";//登录数据库的用户名的密码 Connection conn = null; try{ Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序 conn = DriverManager.getConnection(url,user,password);//链接数据库 }catch(ClassNotFoundException e){ out.println("找不到驱动类");//抛出异常时,提示信息 }catch(SQLException e){ out.println("链接MySQL数据库失败");//处理SQLException异常 } try{ //创建语句对象Statement Statement stmt = conn.createStatement(); //删除userid为1的用户信息 for(int i=2;i<6;i++){ String username = "zhangda_"+i; String adduser = "INSERT INTO user (userid,username,password) VALUES (null,'"+username+"','1234')";//添加用户 stmt.executeUpdate(adduser);//执行语句 } }catch(SQLException e){ out.println("添加用户信息失败"); } %> </body></html>更新记录
<%@page language="java" contentType="text/html;charset=gb2312"%><%@page import="java.sql.*" %><!DOCTYPE html><html> <head> <title>添加用户记录</title> </head> <body> <% String url = "jdbc:mysql://localhost:3306/javaweb";//连接数据库的url地址 String user = "root";//登录数据库的用户名 String password = "zhangda890126;;";//登录数据库的用户名的密码 Connection conn = null; try{ Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序 conn = DriverManager.getConnection(url,user,password);//链接数据库 }catch(ClassNotFoundException e){ out.println("找不到驱动类");//抛出异常时,提示信息 }catch(SQLException e){ out.println("链接MySQL数据库失败");//处理SQLException异常 } try{ //创建语句对象Statement Statement stmt = conn.createStatement(); //更新userid为1的用户信息,更新其密码为12345 String updateuser = "UPDATE user SET password='12345' WHERE userid=1;";//添加用户 stmt.executeUpdate(updateuser);//执行语句 }catch(SQLException e){ out.println("更新用户信息失败"); } %> </body></html>删除记录
<%@page language="java" contentType="text/html;charset=gb2312"%><%@page import="java.sql.*" %><!DOCTYPE html><html> <head> <title>添加用户记录</title> </head> <body> <% String url = "jdbc:mysql://localhost:3306/javaweb";//连接数据库的url地址 String user = "root";//登录数据库的用户名 String password = "zhangda890126;;";//登录数据库的用户名的密码 Connection conn = null; try{ Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序 conn = DriverManager.getConnection(url,user,password);//链接数据库 }catch(ClassNotFoundException e){ out.println("找不到驱动类");//抛出异常时,提示信息 }catch(SQLException e){ out.println("链接MySQL数据库失败");//处理SQLException异常 } try{ //创建语句对象Statement Statement stmt = conn.createStatement(); //删除userid为1的用户信息 String deleteuser = "DELETE FROM user WHERE userid=1;";//添加用户 stmt.executeUpdate(deleteuser);//执行语句 }catch(SQLException e){ out.println("删除用户信息失败"); } %> </body></html>声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Java使用Statement接口执行SQL语句操作的方法。分享给大家供大家参考,具体如下:Statement执行SQL语句:1.对数据库的曾删改
JSP的response对象的实例详解一response对象response对象包含了响应客户请求的有关信息,但在JSP中很少直接用到它。它是HttpServl
Statement对象是用来执行SQL语句的PreparedStatement:预编译的Statement对象,是Statement的子接口。一.性能和代码编写
OracleaddBatch()用法实例详解PreparedStatement.addbatch()的使用Statement和PreparedStatement
JSP中九大内置对象和四种属性范围详解一般对象需要实例化才可以调用,而JSP的内置对象是不用实例化就可以直接调用的对象。总共有9个,对应如下表:序号对象类型1p