SqliteBlob コンストラクター

定義

オーバーロード

SqliteBlob(SqliteConnection, String, String, Int64, Boolean)

SqliteBlob クラスの新しいインスタンスを初期化します。

SqliteBlob(SqliteConnection, String, String, String, Int64, Boolean)

SqliteBlob クラスの新しいインスタンスを初期化します。

SqliteBlob(SqliteConnection, String, String, Int64, Boolean)

SqliteBlob クラスの新しいインスタンスを初期化します。

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)

パラメーター

connection
SqliteConnection

データベースへの開いている接続。

tableName
String

BLOB を含むテーブルの名前。

columnName
String

BLOB を含む列の名前。

rowid
Int64

BLOB を含む行の rowid。

readOnly
Boolean

BLOB が読み取り専用かどうかを示す値。

適用対象

SqliteBlob(SqliteConnection, String, String, String, Int64, Boolean)

SqliteBlob クラスの新しいインスタンスを初期化します。

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)

パラメーター

connection
SqliteConnection

データベースへの開いている接続。

databaseName
String

BLOB を含むアタッチされたデータベースの名前。

tableName
String

BLOB を含むテーブルの名前。

columnName
String

BLOB を含む列の名前。

rowid
Int64

BLOB を含む行の rowid。

readOnly
Boolean

BLOB が読み取り専用かどうかを示す値。

適用対象