OledbConnectionを使用してSQLServerに接続しようとしていますが、エラーが表示されます
サーバーが存在しないか、アクセスが拒否されました
私のコードは
using (OleDbConnection conn = new OleDbConnection(ConnectionString))
{
try
{
// test the connection with an open attempt
conn.Open();
this.Dispose();
}
catch (Exception ex)
{
// inform the user if the connection was not saved
MessageBox.Show(ex.Message, "Connection Test");
}
}