java中连接Mysql的方法与连接SqlServer的方法有区别吗?
5个回答
展开全部
String driverClassName = ...;
String url = ....;
String user = ....;
String pw = ....;
// java代码.
Class.forName(driverClassName);
Connection con = DriverManager.getConnection(url, user, pw);
连不同的数据库,java代码是一样的,只是前面列出的4个变量值不同。
通常情况都是通过配置文件指定那4个值,这样只要修改配置文件,就可以连接不同的数据库。
String url = ....;
String user = ....;
String pw = ....;
// java代码.
Class.forName(driverClassName);
Connection con = DriverManager.getConnection(url, user, pw);
连不同的数据库,java代码是一样的,只是前面列出的4个变量值不同。
通常情况都是通过配置文件指定那4个值,这样只要修改配置文件,就可以连接不同的数据库。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
## MySQL
hibernate.dialect=net.sf.hibernate.dialect.MySQLDialect
hibernate.connection.driver_class=com.mysql.jdbc.Driver
hibernate.connection.url=jdbc\:mysql\://localhost\:3306/ra21?useUnicode\=true&characterEncoding\=gb2312
hibernate.connection.username=root
hibernate.connection.password=88888888
## MS SQL Server
#hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect
#hibernate.connection.username sa
#hibernate.connection.password sa
## Microsoft Driver (not recommended!)
#hibernate.connection.driver_class com.microsoft.jdbc.sqlserver.SQLServerDriver
#hibernate.connection.url jdbc:microsoft:sqlserver://1E1;DatabaseName=test;SelectMethod=cursor
hibernate.dialect=net.sf.hibernate.dialect.MySQLDialect
hibernate.connection.driver_class=com.mysql.jdbc.Driver
hibernate.connection.url=jdbc\:mysql\://localhost\:3306/ra21?useUnicode\=true&characterEncoding\=gb2312
hibernate.connection.username=root
hibernate.connection.password=88888888
## MS SQL Server
#hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect
#hibernate.connection.username sa
#hibernate.connection.password sa
## Microsoft Driver (not recommended!)
#hibernate.connection.driver_class com.microsoft.jdbc.sqlserver.SQLServerDriver
#hibernate.connection.url jdbc:microsoft:sqlserver://1E1;DatabaseName=test;SelectMethod=cursor
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
驱动不一样,连接字符串不一样,建议用连接Mysql,连SqlServer会出现很多异想不到的问题!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
驱动包不一样(driver,URL,user,password也不一样),
其他的操作代码都一样
其他的操作代码都一样
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |