私はordreでnpgsqlを使用してpostgresデータベースに接続しています。次に、asp.netのsqlデータソースタグを使用できるように、web.configに接続を追加します。
以下は私がこれまでにしたことです
<connectionStrings>
<add name="constring" connectionString="Server=localhost; user id=postgres; Password=mypassword; Database='db_name';Trusted_Connection=True"/>
</connectionStrings>
しかし、postgresデータベースのパスワードではなく私のPCプロファイルアカウントのパスワードを使用しているため、ログインエラーを示すエラーが表示されます。
どのようにそれを解決するのか考えていますか?
これは私が今得ているエラーです:
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: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
postgresnoからsqlサーバーに接続したい。