怎么用JDBC连接数据库,下好了jdbc. 不知道怎么用,连接代码怎么写?
//加载驱动类Class.forName("com.mysql.jdbc.Driver");//建立连接con = DriverManager.getConnection("jdbc:mysql://localhost:3306/student", "root", "123456");