3个回答
展开全部
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<html>
<body>
<%Class.forName("com.mysql.jdbc.Driver").newInstance();
String url ="jdbc:mysql://localhost/softforum?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
//testDB为你的数据库名
Connection conn= DriverManager.getConnection(url);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from test";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {%>
您的第一个字段内容为:<%=rs.getString(1)%>
您的第二个字段内容为:<%=rs.getString(2)%>
<%}%>
<%out.print("数据库操作成功,恭喜你");%>
<%rs.close();
stmt.close();
conn.close();
%>
</body>
</html>
<%@ page import="java.sql.*"%>
<html>
<body>
<%Class.forName("com.mysql.jdbc.Driver").newInstance();
String url ="jdbc:mysql://localhost/softforum?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
//testDB为你的数据库名
Connection conn= DriverManager.getConnection(url);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from test";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {%>
您的第一个字段内容为:<%=rs.getString(1)%>
您的第二个字段内容为:<%=rs.getString(2)%>
<%}%>
<%out.print("数据库操作成功,恭喜你");%>
<%rs.close();
stmt.close();
conn.close();
%>
</body>
</html>
展开全部
添加mysql的驱动包,再通过hibernate的逆向工程连接数据库,在jsp页面中使用以下代码
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page import="java.sql.*;"%>
<html>
<body><br>
<%
String name = request.getParameter("name"); //获取用户名
byte b[]=name.getBytes("ISO-8859-1");
name=new String(b);
String password = request.getParameter("password"); //获取密码
%>
<%
try {Class.forName("com.mysql.jdbc.Driver");}
catch(ClassNotFoundException e){}
try{
String url="jdbc:mysql://localhost:3306/myuser";
Connection con=DriverManager.getConnection(url,"root","chhf1988");
Statement stm=con.createStatement();
String sql="select * from user where name="+"'"+name+"'"+"and password="+"'"+password+"'";
ResultSet rs=stm.executeQuery(sql);
if(rs.next())
{
out.println("欢迎 "+ rs.getString(2)+"用户!! ");
}
else{
out.println("用户名或密码错误!请重新输入!! ");
}
stm.close();
con.close();}
catch(SQLException e){}
%>
</body>
</html>
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page import="java.sql.*;"%>
<html>
<body><br>
<%
String name = request.getParameter("name"); //获取用户名
byte b[]=name.getBytes("ISO-8859-1");
name=new String(b);
String password = request.getParameter("password"); //获取密码
%>
<%
try {Class.forName("com.mysql.jdbc.Driver");}
catch(ClassNotFoundException e){}
try{
String url="jdbc:mysql://localhost:3306/myuser";
Connection con=DriverManager.getConnection(url,"root","chhf1988");
Statement stm=con.createStatement();
String sql="select * from user where name="+"'"+name+"'"+"and password="+"'"+password+"'";
ResultSet rs=stm.executeQuery(sql);
if(rs.next())
{
out.println("欢迎 "+ rs.getString(2)+"用户!! ");
}
else{
out.println("用户名或密码错误!请重新输入!! ");
}
stm.close();
con.close();}
catch(SQLException e){}
%>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
最简单的办法,下载个连接mysql的jar 文件。 通过hibernate 来连接数据库,在复制代码 哈哈
不会出错 呵呵
不会出错 呵呵
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询