SqliteBlob Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SqliteBlob(SqliteConnection, String, String, Int64, Boolean) |
Initializes a new instance of the SqliteBlob class. |
SqliteBlob(SqliteConnection, String, String, String, Int64, Boolean) |
Initializes a new instance of the SqliteBlob class. |
SqliteBlob(SqliteConnection, String, String, Int64, Boolean)
Initializes a new instance of the SqliteBlob class.
public SqliteBlob (Microsoft.Data.Sqlite.SqliteConnection connection, string tableName, string columnName, long rowid, bool readOnly = false);
new Microsoft.Data.Sqlite.SqliteBlob : Microsoft.Data.Sqlite.SqliteConnection * string * string * int64 * bool -> Microsoft.Data.Sqlite.SqliteBlob
Public Sub New (connection As SqliteConnection, tableName As String, columnName As String, rowid As Long, Optional readOnly As Boolean = false)
Parameters
- connection
- SqliteConnection
An open connection to the database.
- tableName
- String
The name of table containing the blob.
- columnName
- String
The name of the column containing the blob.
- rowid
- Int64
The rowid of the row containing the blob.
- readOnly
- Boolean
A value indicating whether the blob is read-only.
Applies to
SqliteBlob(SqliteConnection, String, String, String, Int64, Boolean)
Initializes a new instance of the SqliteBlob class.
public SqliteBlob (Microsoft.Data.Sqlite.SqliteConnection connection, string databaseName, string tableName, string columnName, long rowid, bool readOnly = false);
new Microsoft.Data.Sqlite.SqliteBlob : Microsoft.Data.Sqlite.SqliteConnection * string * string * string * int64 * bool -> Microsoft.Data.Sqlite.SqliteBlob
Public Sub New (connection As SqliteConnection, databaseName As String, tableName As String, columnName As String, rowid As Long, Optional readOnly As Boolean = false)
Parameters
- connection
- SqliteConnection
An open connection to the database.
- databaseName
- String
The name of the attached database containing the blob.
- tableName
- String
The name of table containing the blob.
- columnName
- String
The name of the column containing the blob.
- rowid
- Int64
The rowid of the row containing the blob.
- readOnly
- Boolean
A value indicating whether the blob is read-only.