1

まず、Windows認証でssms経由で他のコンピューター(PC1-PC\Instance1)のSQLサーバーに接続しようとしましたが、このエラーが発生しました

Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.

1234PC1-PC\Instance1で sa のパスワードを編集するとエラーが解決します。次に、SQL Server 認証を使用して ssms に接続します。そして無事接続。

問題は私の Winforms アプリの構成にあります。接続を次のように設定しました。

<connectionStrings>
<add name="LibrarySystem.Properties.Settings.LibraryConnectionString" connectionString="Data Source=PC1-PC\Instance1;
     Initial Catalog=System1;Integrated Security=True;MultipleActiveResultSets=True;User id = sa;Password = 1234" providerName="System.Data.SqlClient"/>

しかし、私はこのエラーが発生しましたLogin failed. The login is from an untrusted domain and cannot be used with Windows authentication.

4

1 に答える 1

0
<connectionStrings><add name="LibrarySystem.Properties.Settings.LibraryConnectionString" connectionString="Data Source=PC1-PC\Instance1;
 Initial Catalog=System1;MultipleActiveResultSets=True;User id = sa;Password = 1234" providerName="System.Data.SqlClient"/>
于 2013-09-10T17:28:55.113 に答える