我尝试使用我的简单控制台应用程序使用 SQL Server CE 4.0 数据库,但它无法在我的一台机器上运行。
操作系统:Windows Server 2003 Enterprise x64 Edition with Service Pack 2
我还安装了 Microsoft SQL Server Compact 4.0 并使用了它的 dll ( System.Data.SqlServerCe.dll
) 但每次我得到以下错误
无法加载版本 8080 的 SQL Server C ADO.NET 提供程序的本机组件。安装正确的行为。有关详细信息,请参阅知识库文章 974247。
这是我的代码
try
{
Console.WriteLine("Started");
var sqlConnectionString = "Data Source=c:\\tde\\22\\22.tde;password='sanjayraj';mode=Read Write;max database size=4091;temp file max size=4091";
_connection = new SqlCeConnection(sqlConnectionString);
_connection.Open();
var sqlStatement = "SELECT * FROM InfoStores WHERE Location = 'Source'";
IDbCommand newCommand = new SqlCeCommand
{
CommandText = sqlStatement,
Connection = _connection,
CommandType = CommandType.Text
};
using (IDataReader reader = newCommand.ExecuteReader())
{
while (reader.Read())
{
Console.WriteLine(reader[0].ToString());
}
}
}
catch (Exception ex)
{
Console.WriteLine("Error Occured");
Console.WriteLine(ex.Message);
Console.ReadKey();
}
Console.WriteLine("Finished");
Console.ReadKey();