c# 连接oracle数据库的话我用下面的代码有什么错误吗?
发布网友
发布时间:2024-10-01 14:56
我来回答
共3个回答
热心网友
时间:2024-10-14 10:16
class DataBase
{
SqlConnection myconn; //作为数据库的链接对象
private String server = "localhost"; //数据库的链接
private String database = "booksys"; //数据库名称
private String username = "sa"; //数据库的登录名
private String password = "123456"; //数据库的密码
public bool databasecon()
{
string str = "server=" + server + ";database=" + database + ";uid=" + username + ";pwd=" + password; //构建字符串
try //试着去打开数据库
{
myconn = new SqlConnection(str); //新建链接,并按字符串链接
myconn.Open(); //打开数据库
}
catch (Exception ) //如果失败
{
return false;
}
return true;
}
public SqlConnection getconn()
{
return myconn;
}
public void closeconn()
{
myconn.Close();
}
}
定义一个类,在类中定义好,然后每次用的时候从类中调用就行了
热心网友
时间:2024-10-14 10:17
推荐你@eygle
热心网友
时间:2024-10-14 10:17
//Try:
public static string a=@"Data Source=orcl;User Id=scott;Password=tiger;Load Balancing=True";