Я пишу програму, де користувач надає рядок підключення вручну, і мені цікаво, чи є спосіб, яким я можу перевірити рядок підключення - я маю на увазі перевірити, чи це правильно, і чи існує база даних.
Відповіді:
Можна спробувати підключитися? Для швидкої (автономної) перевірки, можливо, використовуйте DbConnectionStringBuilder
для її аналізу ...
DbConnectionStringBuilder csb = new DbConnectionStringBuilder();
csb.ConnectionString = "rubb ish"; // throws
Але щоб перевірити, чи існує db, потрібно спробувати підключитися. Найпростіше, якщо ви знаєте постачальника послуг, звичайно:
using(SqlConnection conn = new SqlConnection(cs)) {
conn.Open(); // throws if invalid
}
Якщо ви знаєте постачальника лише як рядок (під час виконання), тоді використовуйте DbProviderFactories
:
string provider = "System.Data.SqlClient"; // for example
DbProviderFactory factory = DbProviderFactories.GetFactory(provider);
using(DbConnection conn = factory.CreateConnection()) {
conn.ConnectionString = cs;
conn.Open();
}
If the SqlConnection goes out of scope, it is not closed. Therefore, you must explicitly close the connection by calling Close.
Dispose()
дзвінкиClose()
Спробуйте це.
try
{
using(var connection = new OleDbConnection(connectionString)) {
connection.Open();
return true;
}
}
catch {
return false;
}
Для sqlite використовуйте це: Припустимо, у вас є рядок підключення в текстовому полі txtConnSqlite
Using conn As New System.Data.SQLite.SQLiteConnection(txtConnSqlite.Text)
Dim FirstIndex As Int32 = txtConnSqlite.Text.IndexOf("Data Source=")
If FirstIndex = -1 Then MsgBox("ConnectionString is incorrect", MsgBoxStyle.Exclamation, "Sqlite") : Exit Sub
Dim SecondIndex As Int32 = txtConnSqlite.Text.IndexOf("Version=")
If SecondIndex = -1 Then MsgBox("ConnectionString is incorrect", MsgBoxStyle.Exclamation, "Sqlite") : Exit Sub
Dim FilePath As String = txtConnSqlite.Text.Substring(FirstIndex + 12, SecondIndex - FirstIndex - 13)
If Not IO.File.Exists(FilePath) Then MsgBox("Database file not found", MsgBoxStyle.Exclamation, "Sqlite") : Exit Sub
Try
conn.Open()
Dim cmd As New System.Data.SQLite.SQLiteCommand("SELECT * FROM sqlite_master WHERE type='table';", conn)
Dim reader As System.Data.SQLite.SQLiteDataReader
cmd.ExecuteReader()
MsgBox("Success", MsgBoxStyle.Information, "Sqlite")
Catch ex As Exception
MsgBox("Connection fail", MsgBoxStyle.Exclamation, "Sqlite")
End Try
End Using
Я думаю, ви можете легко перетворити його в код c #