求 jsp 连接数据库代码
求具体代码
Connection conn=null;
String url="jdbc:mysql://localhost:3306/mydb"; //mydb是你要连接的数据库名称
String user="root";
String password="root"; //password是你使用数据库的密码
try{
Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动
conn=DriverManager.getConnection(url,user,password);//建立与数据库的连接
}catch(ClassNotFoundException e){
out
}