发布网友 发布时间:2022-04-22 19:39
共1个回答
热心网友 时间:2023-10-26 13:17
加入类似下面那段代码
<%String url="jdbc:mysql://localhost:3306/picture";
//picture为数据库名,可以在小黑框输入create databas picture;建立
String user="root";用户名
String password="root";密码
Connection conn =null;
Statement st=null;
try{
Class.forName("com.mysql.jdbc.Driver");
conn=DriverManager.getConnection(url,user,password);
st=conn.createStatement();
String sql="insert into test(id,name,password) values(1,'user','123')";
//需要在小黑框内创建一张test的表,表里有id,name,password三个字段,id是int型,name,password是varchar型
st.excuteUpdate(sql)
}finally{
try{
if(rs!=null)
rs.close();
}finally{
try{
if(st!=null)
pstmt.close();
}finally{
if(conn!=null){
conn.close();
}
}
}
}
out.println("Success,You Have Insert an Image Successfully");
%>
在JSP的头部加入<%@ page import="java.sql.*" %>
把mysql-connector-java-3.1.12-bin.jar复制到这个在WEB-INF/lib就可以成功连接并存入数据。