summaryrefslogtreecommitdiff
path: root/platform/qt/src/sqlite3.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] finish must-revalidate supportKonstantin Käfer2017-08-081-0/+1
|
* [Qt] Fix database timeout not being set correctlyThiago Marcos P. Santos2017-07-261-1/+6
| | | | | | | | It was overflowing due to long to int conversion inside Qt and never being effectively set because Qt was silently ignoring the conversion error and discarding the new value. Fixes #9108.
* [Qt] Align database creation behavior with the default implementationThiago Marcos P. Santos2017-07-171-2/+11
| | | | | Qt doesn't throw a Exception::Code::CANTOPEN when trying to open a database that doesn't exist without the Create flag.
* [core] Remove unused bool() functionsBruno de Oliveira Abinader2017-04-141-9/+0
|
* [Qt] Guarantee QSqlDatabase connection name uniquenessBruno de Oliveira Abinader2017-02-011-1/+8
| | | | | Guarantee QSqlDatabase connection name uniqueness by using a static counter together with the current thread.
* [Qt] Make datatypes compatible with the default implementationThiago Marcos P. Santos2017-01-261-3/+15
| | | | On the default all integers map to `sqlite3_bind_int64`.
* [Qt] Check for Qt SQLite database driverBruno de Oliveira Abinader2017-01-231-20/+21
|
* [Qt] Explicitly map the `bool` binder to `int`Thiago Marcos P. Santos2017-01-231-1/+5
| | | | On Qt4 and Qt5 the QVariant conversion from bool behaves differently.
* [Qt] Save a copy when using binary data if possibleThiago Marcos P. Santos2017-01-231-9/+10
|
* [Qt] Implement mapbox::sqlite::{Database,Statement} using QtSqlBruno de Oliveira Abinader2017-01-231-0/+411