我想做jsp制作留言板,页面都做好了,就是不会数据库连接,谁有做好的留言板,给我参考一下可以吗?
3个回答
展开全部
public static void main(String[] args) throws SQLException,
ClassNotFoundException {
String user = "root";
String pssword = "1234";
// 设定url
String myjdbc = "jdbc:mysql://localhost:3306/studb";
// 加载mysql驱动
Class.forName("com.mysql.jdbc.Driver");
// 创建连接会话
Connection myConnection = DriverManager
.getConnection(myjdbc, user, pssword);
// 创建语句块对象
Statement Myoperation = myConnection.createStatement();
// 获取结果集对象
ResultSet record = Myoperation.executeQuery("SELECT * FROM studb.students");
}
ClassNotFoundException {
String user = "root";
String pssword = "1234";
// 设定url
String myjdbc = "jdbc:mysql://localhost:3306/studb";
// 加载mysql驱动
Class.forName("com.mysql.jdbc.Driver");
// 创建连接会话
Connection myConnection = DriverManager
.getConnection(myjdbc, user, pssword);
// 创建语句块对象
Statement Myoperation = myConnection.createStatement();
// 获取结果集对象
ResultSet record = Myoperation.executeQuery("SELECT * FROM studb.students");
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询