SQLite例外. [詳細]
Public メソッド | |
SQLiteException (SQLiteConnection connect) | |
コンストラクタ | |
SQLiteException (OSQLiteStmtWrap stmt) | |
コンストラクタ | |
Protected 変数 | |
ResultEnum | m_errcode = ResultEnum.ERROR |
処理戻値 | |
int | m_extendederrcode = -1 |
拡張エラーコード |
SQLite例外.
SQLiteException.cs の 11 行で定義されています。
SQLiteCSLib.SQLiteException.SQLiteException | ( | SQLiteConnection | connect | ) |
コンストラクタ
connect | SQLite接続 |
SQLiteException.cs の 27 行で定義されています。
00027 : base( (connect != null ) ? connect.OSQLiteDB.getLastErrMsg():"Fail!!" ) 00028 { 00029 if( connect != null ) 00030 { 00031 m_extendederrcode = connect.OSQLiteDB.getExtendedErrcode(); 00032 m_errcode = (ResultEnum)connect.OSQLiteDB.getLastErr(); 00033 } 00034 }
SQLiteCSLib.SQLiteException.SQLiteException | ( | OSQLiteStmtWrap | stmt | ) |
コンストラクタ
stmt | STMTラッパー |
SQLiteException.cs の 40 行で定義されています。
00040 : base( (stmt != null ) ? stmt.DbWrap().getLastErrMsg():"Fail!!" ) 00041 { 00042 if( stmt != null ) 00043 { 00044 m_extendederrcode = stmt.DbWrap().getExtendedErrcode(); 00045 m_errcode = (ResultEnum)stmt.DbWrap().getLastErr(); 00046 } 00047 }
ResultEnum SQLiteCSLib.SQLiteException.m_errcode = ResultEnum.ERROR [protected] |
処理戻値
SQLiteException.cs の 16 行で定義されています。
int SQLiteCSLib.SQLiteException.m_extendederrcode = -1 [protected] |
拡張エラーコード
SQLiteException.cs の 21 行で定義されています。