UtilSQLiteOpenDatabase(String, String) Method
Opens a SQL database file with the specified password, 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,
string password
)
Public Shared Function OpenDatabase (
path As String,
password As String
) As SQLiteConnection
Dim path As String
Dim password As String
Dim returnValue As SQLiteConnection
returnValue = UtilSQLite.OpenDatabase(path,
password)
public:
static SQLiteConnection^ OpenDatabase(
String^ path,
String^ password
)
static member OpenDatabase :
path : string *
password : string -> SQLiteConnection
No code example is currently available or this language may not be supported.
- path String
-
Full path of the database file.
- password String
-
The database password.
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", "password")
'...
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.