| 112 | QString XSqlQuery::table_prefix; |
| 113 | |
| 114 | int XSqlQuery::schemaVersion() |
| 115 | { |
| 116 | qDebug() << "table_prefix:" << table_prefix;; |
| 117 | return QSqlDatabase::database().tables() |
| 118 | .contains(table_prefix + "settings") ? |
| 119 | Settings["schema"] : 0; |
| 120 | } |
| 121 | |
| 122 | QString XSqlQuery::rewriteQuery(QString _q) |
| 123 | { |
nothing calls this directly
no outgoing calls
no test coverage detected