求一段jsp连接mysql的测试程序

2025-01-01 13:40:22
推荐回答(3个)
回答1:

在此之前我的所有配置操作都成功了
就到了这里出现了问题
这里是哪里啊?
String url ="jdbc:mysql:
//localhost/softforum?user=
soft&password=soft1234&useUnicode=
true&characterEncoding=8859_1"
?softforum是你的数据库名吗?
select * from first ?
你的数据库有first表吗?

回答2:

您的第一个字段内容为:<%=rs.getString(1)%>

结构是 id(int) name (char (10))

是不是要改为:<%=rs.getint(1)%>

回答3:

楼主给下出错代码吧