SQLite例外. [詳細]
Public メソッド | |
SQLiteException (SQLiteConnection connect) | |
コンストラクタ | |
SQLiteException (OSQLiteStmtWrap stmt) | |
コンストラクタ | |
Protected 変数 | |
ResultEnum | m_errcode = ResultEnum.ERROR |
処理戻値 |
SQLite例外.
SQLiteException.cs の 11 行で定義されています。
SQLiteCSLib.SQLiteException.SQLiteException | ( | SQLiteConnection | connect | ) |
コンストラクタ
connect | SQLite接続 |
SQLiteException.cs の 22 行で定義されています。
00022 : base( (connect != null ) ? connect.OSQLiteDB.getLastErrMsg():"Fail!!" ) 00023 { 00024 if( connect != null ) 00025 { 00026 m_errcode = (ResultEnum)connect.OSQLiteDB.getLastErr(); 00027 } 00028 }
SQLiteCSLib.SQLiteException.SQLiteException | ( | OSQLiteStmtWrap | stmt | ) |
コンストラクタ
stmt | STMTラッパー |
SQLiteException.cs の 34 行で定義されています。
00034 : base( (stmt != null ) ? stmt.DbWrap().getLastErrMsg():"Fail!!" ) 00035 { 00036 if( stmt != null ) 00037 { 00038 m_errcode = (ResultEnum)stmt.DbWrap().getLastErr(); 00039 } 00040 }
ResultEnum SQLiteCSLib.SQLiteException.m_errcode = ResultEnum.ERROR [protected] |
処理戻値
SQLiteException.cs の 16 行で定義されています。