Constructor
| 41 | |
| 42 | // Constructor |
| 43 | NSqlQuery::NSqlQuery(DatabaseConnection *db) : |
| 44 | QSqlQuery(db->conn) |
| 45 | { |
| 46 | this->db = db; |
| 47 | DEBUG_TRIGGER = 100; |
| 48 | INDEX_PAUSE_TRIGGER = 10; |
| 49 | } |
| 50 | |
| 51 | |
| 52 | // Destructor |
nothing calls this directly
no outgoing calls
no test coverage detected