这是DBConnection的代码,请问如何修改成sql sever2012的代码?
package com.mingrisoft; //指定类所在的包
import java.sql.*; //导入数据库操作的类
import java.util.*;
import java.io.*;
import com.mingrisoft.Function;
public class DBConnection
{
private String FileName; //配置文件名
private int DBType; //数据库类型
private Connection conn; //连接对象
private String MySqlDriver; //MYSQL Server驱动程序
private String MySqlURL; //MYSQL Server连接字符串
public DBConnection()
{
conn = null;
}
public Connection getConn()
{
DBType= new Function().StrToInt(getPara("DBType"));
switch(DBType)
{
case 1:return(getConnToMySql());
default:return null;
}
}
public String getPara(String ParaName)
{
FileName="../DBConfig.property";
Properties prop= new Properties();
try
{
InputStream is=getClass().getResourceAsStream(FileName);
prop.load(is);
if(is!=null) is.close();
}
catch(Exception e) {
return "Error!";
}
return prop.getProperty(ParaName);
}
public Connection getConnToMySql()
{
try{
MySqlDriver = getPara("MySQLDriver");
MySqlURL = getPara("MySQLURL");
Class.forName(MySqlDriver).newInstance();
conn = DriverManager.getConnection(MySqlURL);
}catch(Exception e){
//e.printStackTrace();
//return "操作数据库出错,请仔细检查" ;
//System.err.println(e.getMessage());
}
return conn;
}
}
这是DBConfig.property的代码,请问如何改成sql server2012的?
#数据库类型:1为MYSQL,默认为1。
DBType=1
#MySQL 数据库连接信息
#MySQL 数据库驱动程序
MySQLDriver=org.gjt.mm.mysql.Driver
#MySQL数据库连接字符串。
#127.0.0.1:3306 为数据库地址和端口
#DreamTimeNews 为数据库名,user 为登录用户名,password 为登录密码。请自行更改。
MySQLURL=jdbc:mysql://127.0.0.1:3306/webdb?user=root&password=root&useUnicode=true&characterEncoding=UTF-8
#您还可以继续添加其它的数据库。
是不是修改这两处就可以了?请问如何修改?因为我现在装的sql server 2012数据库。谢谢