JSP程序实现对MySQL数据库时候出错

这是我的源代码:<%StringdriverName="com.mysql.jdbc.Driver";//驱动程序名StringuserName="root";//数据库... 这是我的源代码:
<%
String driverName="com.mysql.jdbc.Driver";//驱动程序名
String userName="root";//数据库用户名
String userPasswd="";//密码
String dbName="book";//数据库名
String tableName="bookInfo";//表名
//连接字符串
String url="jdbc:mysql://localhost:3306/"+dbName+"?user="+userName+"&password="+userPasswd;
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn=DriverManager.getConnection(url);
out.println("数据库连接成功");
conn.close();
%>

下面是出错提示,请大侠帮我分析一下!感激不尽!
org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: 10 in the jsp file: /ConnMysql.jsp
Connection cannot be resolved to a type
7: //连接字符串
8: String url="jdbc:mysql://localhost:3306/"+dbName+"?user="+userName+"&password="+userPasswd;
9: Class.forName("com.mysql.jdbc.Driver").newInstance();
10: Connection conn=DriverManager.getConnection(url);
11: out.println("数据库连接成功");
12: conn.close();
13: %>

An error occurred at line: 10 in the jsp file: /ConnMysql.jsp
DriverManager cannot be resolved
7: //连接字符串
8: String url="jdbc:mysql://localhost:3306/"+dbName+"?user="+userName+"&password="+userPasswd;
9: Class.forName("com.mysql.jdbc.Driver").newInstance();
10: Connection conn=DriverManager.getConnection(url);
11: out.println("数据库连接成功");
12: conn.close();
13: %>

An error occurred at line: 12 in the jsp file: /ConnMysql.jsp
Syntax error on tokens, delete these tokens
9: Class.forName("com.mysql.jdbc.Driver").newInstance();
10: Connection conn=DriverManager.getConnection(url);
11: out.println("数据库连接成功");
12: conn.close();
13: %>
14:
展开
 我来答
cql5780
2010-06-27 · TA获得超过1863个赞
知道大有可为答主
回答量:3409
采纳率:0%
帮助的人:1151万
展开全部
<!--首先导入一些必要的packages-->
<%@ page import="java.io.*"%>
<%@ page import="java.util.*"%>
<!--告诉编译器使用SQL包-->
<%@ page import="java.sql.*"%>
<!--设置中文输出-->
<%@ page contentType="text/html; charset=GBK"祥猜 %>
<%
String driverName="com.mysql.jdbc.Driver";//驱动程序名
String userName="root";//数据库用户册备名
String userPasswd="";//密码
String dbName="book";//数据库名
String tableName="bookInfo";//表名
//连接字符串
String url="jdbc:mysql://localhost:3306/"+dbName+"?user="+userName+"&password="+userPasswd;
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn=DriverManager.getConnection(url);//没有引用Connection类
out.println("数据库连接成功");
conn.close();//要用州宴毁英文括号
%>
百度网友460b538
2010-06-27 · TA获得超过696个赞
知道小有建树答主
回答量:707
采纳率:100%
帮助的人:911万
展开全部
12: conn.close();

你这里肯定复制出错,是全角的括号了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
norrain7211373
2010-06-27 · TA获得超过135个赞
知道小有建树答主
回答量:164
采纳率:0%
帮助的人:129万
展开全部
String dbURL="慧或jdbc:mysql://localhost:3306/book";
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection(dbURL,userName,userPasswd);
stat=con.createStatement();
}
catch(Exception e){
e.printStackTrace();
}
这个樱碧桐stat是Statement stat;用这个就直脊坦接可以写sql操作数据库了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式