当前位置: 技术问答>java相关
请问jsp和什么数据库配合的比较好呀(最简单的是什么呀?)
来源: 互联网 发布时间:2015-02-10
本文导语: | MySQL ?? It is free and simple. | MySQL恐怕是最简单的了,不过它不支持失误、存储过程等。 连接方法: Class.forName("org.gjt.mm.mysql.Driver"); String url="jdbc:mysql://localhost:3306/Sample?user=root;password="; Connectio...
|
MySQL ?? It is free and simple.
|
MySQL恐怕是最简单的了,不过它不支持失误、存储过程等。
连接方法:
Class.forName("org.gjt.mm.mysql.Driver");
String url="jdbc:mysql://localhost:3306/Sample?user=root;password=";
Connection conn=DriverManager.getConnection(url);
。。。
连接方法:
Class.forName("org.gjt.mm.mysql.Driver");
String url="jdbc:mysql://localhost:3306/Sample?user=root;password=";
Connection conn=DriverManager.getConnection(url);
。。。