1

SqlConnectionCE (.sdf) データベースを開こうとしていますが、例外がスローされます。

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

私がしたことは、App_Data フォルダーを右クリックして、そこにデータベースを作成することです。次に、プロパティから接続文字列をコピーし、web.config に配置しました。「接続をテスト」しようとすると成功します。

接続文字列以外には、データ ソース、プロバイダー名などの他の属性は指定しませんでした。

ティア!

4

1 に答える 1

0

SQL Server Compact データベース ファイルに接続するには、 SqlConnection ではなく、 SqlCeConnectionクラスを使用する必要があります。System.Data.SqlServerCe.dll ADO.NET プロバイダー DLL ファイルへの参照を追加して、SqlCeConnection クラスを使用します。

于 2013-05-14T13:17:55.397 に答える