| 79 | } |
| 80 | |
| 81 | bool WizIndexBase::execSQL(const CString& strSQL) |
| 82 | { |
| 83 | try { |
| 84 | m_db.execDML(strSQL); |
| 85 | return true; |
| 86 | } catch (const CppSQLite3Exception& e) { |
| 87 | return logSQLException(e, strSQL); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | CppSQLite3Query WizIndexBase::Query(const CString& strSQL) |
| 92 | { |