UtilSQLiteOpenDatabase(String) Method
Opens a SQL database file and returns a SQLiteConnection
with the default connection parameters.
Namespace: DevCase.ThirdParty.SQLiteAssembly: DevCase.net48.ThirdParty.SQLite (in DevCase.net48.ThirdParty.SQLite.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static SQLiteConnection OpenDatabase(
string path
)
Public Shared Function OpenDatabase (
path As String
) As SQLiteConnection
Dim path As String
Dim returnValue As SQLiteConnection
returnValue = UtilSQLite.OpenDatabase(path)
public:
static SQLiteConnection^ OpenDatabase(
String^ path
)
static member OpenDatabase :
path : string -> SQLiteConnection
No code example is currently available or this language may not be supported.
- path String
-
Full path of the database file.
SQLiteConnection
The resulting
SQLiteConnection
This is a code example to automate Firefox borwser.
No code example is currently available or this language may not be supported.
Using db As System.Data.SQLite.SQLiteConnection = SQLiteUtil.OpenDatabase("C:\Database.db")
'...
End Using
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.