在C#.Net中连接到远程SQL Server
本文关键字:SQL Server 连接 Net | 更新日期: 2023-09-27 18:29:04
我正在尝试连接到数据库,但它一直告诉我"无效实例"。
这是我的代码:
string connectionString = "Driver={SQL Server};Server=server;Database=db;;Uid=user;Pwd=pass;";
OdbcConnection MyConnection = new OdbcConnection();
MyConnection.ConnectionString = connectionString;
MyConnection.Open();
问题出在哪里?
谢谢!
尝试使用这个。
Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;
如果您使用的是MS Sql服务器,最好使用SqlConnection。
using(SqlConnection conn = new SqlConnection(connestionString)){
conn.open();
..
}
http://www.connectionstrings.com/sql-server-2005