jsp mysql 判断连接数据库失败 try-凯发k8官方网
请大家帮我看看,我的这段代码不知道哪里有问题,编译出异常我想做个登录的处理,在htmh页面里把值提交到jsp页面在存进数据库,然后把它们打印出来。帮我改改.
请大家帮我看看,我的这段代码不知道哪里有问题,编译出异常 我想做个登录的处理,在htmh页面里把值提交到jsp页面在存进数据库,然后把它们打印出来。
帮我改改.
string uname=request.getparameter("name");
string pwd=request.getparameter("password");
string em=request.getparameter("email");
string udizi=request.getparameter("dizi");
int id=integer.parseint(request.getparameter("id"));
//string id=request.getparameter("id");
%>
string driver="org.gjt.mm.mysql.driver";
//org.git.mm.mysql.driver"和com.mysql.jdbc.driver
//string url="jdbc:mysql://localhost/dbtext?user=root&password=123456";
//string url = "jdbc:mysql://localhost/jdbc?user=root&password=root";
string url="jdbc:mysql://localhost:3306/dbtext?user=root&password=123456";
string sql="insert into denglutext (id,name,password,email,dizi,) values('" id "','" uname "','" pwd "','" em "','" udizi "')";
connection conn=null;
statement stmt=null;
resultset rs = null;
%>
try{ %>
class.forname(driver);
conn=drivermanager.getconnection(url);
stmt=conn.createstatement();
//stmt.executeupdate(sql);
rs=stmt.executequery("select * from denglutext");
//class.forname(driver);
//conn = drivermanager.getconnection(url);
//stmt = conn.createstatement();
//stmt.executeupdate(sql);
%>
while(rs.next()){
%>
string s1=rs.getstring(1);
string s2=rs.getstring(2);
string s3=rs.getstring(3);
string s4=rs.getstring(4);
string s5=rs.getstring(5);
%>
//out.println("连接成功!!");
} catch(exception ex){
out.println("以下错误" ex);
}
%>
回答者: yanghaoynu 你在说什么啊,
我以搞定,实际上这样做就可以了
string sql="insert into textdb (name,pwd,email)values('" name "','" pwd "','" em "')";
展开
总结
以上是凯发k8官方网为你收集整理的jsp mysql 判断连接数据库失败 try_急……jsp 连接mysql不知道哪里出异常的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: