<%@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>
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有