mysql
如何连接mysql?? 就是 搜索更多相关的解决方案:
mysql
----------------解决方案--------------------------------------------------------
Class.forName(" ?? ") ;
Connection cn = DriverManager.getConnection("???") ;
----------------解决方案--------------------------------------------------------
问号里应该写些什么呢?? 谢谢!
----------------解决方案--------------------------------------------------------
解决啦
----------------解决方案--------------------------------------------------------
Class.forName("com.mysql.jdbc.Driver");//加载驱动程序
Connection con=DriverManager.getConnection("jdbc:mysql://localhost/demo","root","123456");
/*demo为在MYSQL下建
立的数据库名字,123456是进入数据库的密码*/
----------------解决方案--------------------------------------------------------