如何在没有 SQL Client 的情况下在 VS2010 中动态创建与数据库的连接?
我尝试使用ConnectionStringSettings
andSqlConnection
我成功了,但我不应该使用 SQL Client。
我正在使用大规模。
如何在没有 SQL Client 的情况下在 VS2010 中动态创建与数据库的连接?
我尝试使用ConnectionStringSettings
andSqlConnection
我成功了,但我不应该使用 SQL Client。
我正在使用大规模。
可能是您错过了System.Configuration
项目中的引用,因此Massive在您的 app.config 中找不到连接字符串。
按照github 上的说明,我可以使用在我的 app.config 中具有纯SqlClient
连接字符串的 Massive 查询我的 SQL Express 数据库,而不会出现任何问题。
您应该可以使用System.Data.OleDb.OleDbConnection
.
使用这样的连接字符串:
Provider=SQLOLEDB;Server=myServerAddress;Database=myDataBase;Uid=myUsername; Pwd=myPassword;