Open Method (SQLiteConnection)
Opens a SQLite connection with the property settings specified by the
ConnectionString.
The following example creates a
SQLiteConnection, opens it, displays some of its properties, and then closes the connection.
public void CreateSQLiteConnection(string myConnString)
{
SQLiteConnection sqConnection = new SQLiteConnection(myConnString);
sqConnection.Open();
MessageBox.Show("ServerVersion: " + sqConnection.ServerVersion
+ "\nState: " + sqConnection.State.ToString());
sqConnection.Close();
}
Public Sub CreateSQLiteConnection(myConnString As String)
Dim sqConnection As New SQLiteConnection(myConnString)
sqConnection.Open()
MessageBox.Show("ServerVersion: " + sqConnection.ServerVersion _
+ ControlChars.Cr + "State: " + sqConnection.State.ToString())
sqConnection.Close()
End Sub