* @brief Query documents by SQL where statement. * * @param strSQLWhere * @return QVariantList */
| 4950 | * @return QVariantList |
| 4951 | */ |
| 4952 | QVariantList WizDatabase::DocumentsFromSQLWhere(const QString& strSQLWhere) |
| 4953 | { |
| 4954 | CWizDocumentDataArray arrayDocument; |
| 4955 | CString strSQL = formatQuerySQL(TABLE_NAME_WIZ_DOCUMENT, FIELD_LIST_WIZ_DOCUMENT, strSQLWhere); |
| 4956 | sqlToDocumentDataArray(strSQL, arrayDocument); |
| 4957 | return packDocumentsToList(arrayDocument); |
| 4958 | } |
| 4959 | |
| 4960 | QObject *WizDatabase::AttachmentFromGUID(const QString &attachmentGUID) |
| 4961 | { |
no outgoing calls
no test coverage detected