You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Public Overrides ReadOnly Property Provider As DbConnection
Get
Return Me._provider
End Get
End Property
Private _provider As SQLiteConnection
Public Overrides ReadOnly Property ProviderResource As System.Type = GetType(ProviderResource)
Public Overrides ReadOnly Property ClientName As String = "System.Data.SQLite"
Public Overrides ReadOnly Property Statement As System.Type = GetType(Statement)
Public Overrides Sub Open(dsn As String)
Me._provider = New SQLiteConnection(dsn)
Me._provider.Open()
End Sub
Protected Overrides Function createAndBeginTransaction(Optional transactionName As String = "", Optional isolationLevel As IsolationLevel = IsolationLevel.Unspecified) As Databasic.Transaction