SQLiteパラメータ. [詳細]
Public メソッド | |
SQLiteParameter () | |
コンストラクタ | |
int | CompareTo (object obj) |
比較 | |
Protected 変数 | |
ParameterDirection | m_dir = ParameterDirection.InputOutput |
入出力方向 | |
DbType | m_type = DbType.Object |
型 | |
object | m_value = null |
値 | |
bool | m_isnull = true |
NULL許可. | |
DataRowVersion | m_datarowver = DataRowVersion.Current |
データ行バージョン | |
string | m_paraname = "" |
パラメータ名 | |
string | m_column = "" |
カラム | |
int | m_order = 0 |
順序 | |
プロパティ | |
byte | Precision [get, set] |
数値パラメータの有効桁数プロパティ | |
byte | Scale [get, set] |
数値パラメータの小数部桁数プロパティ | |
int | Size [get, set] |
パラメータのサイズプロパティ | |
ParameterDirection | Direction [get, set] |
入出力方向プロパティ | |
DbType | DbType [get, set] |
型プロパティ | |
object | Value [get, set] |
値プロパティ | |
bool | IsNullable [get] |
NULL許可プロパティ ※未サポート. | |
DataRowVersion | SourceVersion [get, set] |
データ行バージョンプロパティ | |
string | ParameterName [get, set] |
パラメータ名プロパティ | |
string | SourceColumn [get, set] |
カラムプロパティ | |
int | Order [get, set] |
順序プロパティ |
SQLiteパラメータ.
SQLiteParameter.cs の 11 行で定義されています。
SQLiteCSLib.SQLiteParameter.SQLiteParameter | ( | ) |
int SQLiteCSLib.SQLiteParameter.CompareTo | ( | object | obj | ) |
比較
obj | 比較対象 |
SQLiteParameter.cs の 272 行で定義されています。
00273 { 00274 SQLiteParameter target = obj as SQLiteParameter; 00275 00276 if( m_order < target.m_order ) 00277 return -1; 00278 00279 if( m_order > target.m_order ) 00280 return 1; 00281 00282 return 0; 00283 }
string SQLiteCSLib.SQLiteParameter.m_column = "" [protected] |
カラム
SQLiteParameter.cs の 230 行で定義されています。
DataRowVersion SQLiteCSLib.SQLiteParameter.m_datarowver = DataRowVersion.Current [protected] |
データ行バージョン
SQLiteParameter.cs の 190 行で定義されています。
ParameterDirection SQLiteCSLib.SQLiteParameter.m_dir = ParameterDirection.InputOutput [protected] |
入出力方向
SQLiteParameter.cs の 65 行で定義されています。
bool SQLiteCSLib.SQLiteParameter.m_isnull = true [protected] |
NULL許可.
SQLiteParameter.cs の 173 行で定義されています。
int SQLiteCSLib.SQLiteParameter.m_order = 0 [protected] |
順序
SQLiteParameter.cs の 250 行で定義されています。
string SQLiteCSLib.SQLiteParameter.m_paraname = "" [protected] |
パラメータ名
SQLiteParameter.cs の 210 行で定義されています。
DbType SQLiteCSLib.SQLiteParameter.m_type = DbType.Object [protected] |
型
SQLiteParameter.cs の 85 行で定義されています。
object SQLiteCSLib.SQLiteParameter.m_value = null [protected] |
値
SQLiteParameter.cs の 105 行で定義されています。
DbType SQLiteCSLib.SQLiteParameter.DbType [get, set] |
型プロパティ
SQLiteParameter.cs の 91 行で定義されています。
ParameterDirection SQLiteCSLib.SQLiteParameter.Direction [get, set] |
入出力方向プロパティ
SQLiteParameter.cs の 71 行で定義されています。
bool SQLiteCSLib.SQLiteParameter.IsNullable [get] |
NULL許可プロパティ ※未サポート.
SQLiteParameter.cs の 180 行で定義されています。
int SQLiteCSLib.SQLiteParameter.Order [get, set] |
順序プロパティ
SQLiteParameter.cs の 256 行で定義されています。
string SQLiteCSLib.SQLiteParameter.ParameterName [get, set] |
パラメータ名プロパティ
SQLiteParameter.cs の 216 行で定義されています。
byte SQLiteCSLib.SQLiteParameter.Precision [get, set] |
数値パラメータの有効桁数プロパティ
SQLiteParameter.cs の 24 行で定義されています。
byte SQLiteCSLib.SQLiteParameter.Scale [get, set] |
数値パラメータの小数部桁数プロパティ
SQLiteParameter.cs の 38 行で定義されています。
int SQLiteCSLib.SQLiteParameter.Size [get, set] |
パラメータのサイズプロパティ
SQLiteParameter.cs の 52 行で定義されています。
string SQLiteCSLib.SQLiteParameter.SourceColumn [get, set] |
カラムプロパティ
SQLiteParameter.cs の 236 行で定義されています。
DataRowVersion SQLiteCSLib.SQLiteParameter.SourceVersion [get, set] |
データ行バージョンプロパティ
SQLiteParameter.cs の 196 行で定義されています。
object SQLiteCSLib.SQLiteParameter.Value [get, set] |
値プロパティ
SQLiteParameter.cs の 111 行で定義されています。