summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlsqldatabase.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-428/+0
| | | | QDeclarativeXXX.
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtMartin Jones2010-02-181-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mkspecs/linux-g++-x11egl/qplatformdefs.h src/declarative/qml/qmldom.h src/declarative/util/qmlview.cpp src/declarative/util/qmlview.h tools/qdoc3/cppcodemarker.cpp tools/qmldebugger/standalone/canvasframerate.cpp tools/qmldebugger/standalone/engine.cpp tools/qmldebugger/standalone/expressionquerywidget.cpp tools/qmldebugger/standalone/expressionquerywidget.h tools/qmldebugger/standalone/objectpropertiesview.cpp tools/qmldebugger/standalone/objectpropertiesview.h tools/qmldebugger/standalone/objecttree.cpp tools/qmldebugger/standalone/qmldebugger.cpp tools/qmldebugger/standalone/watchtable.cpp tools/qmldebugger/standalone/watchtable.h
| * Fix copyright year.Jason McDonald2010-02-161-1/+1
| | | | | | | | Reviewed-by: Trust Me
* | MOBILITY-404 QS Windows.Wolfgang Beck2010-02-161-0/+3
|/
* QTBUG-6507 appears fixed (don't know when)Warwick Allison2010-01-111-6/+1
|
* Print exceptions generated in SQL callback functions.Michael Brasser2009-12-151-1/+5
|
* undebugWarwick Allison2009-12-081-1/+0
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-12-061-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * small cleanupThierry Bastian2009-12-041-1/+1
| | | | | | | | | | | | make use of QVariant::userType over Qvariant::type make use of char for 1-string character QCoreApplication::translate is static
* | Make QmlScriptEngine reusable in WorkScript, so extra fns are available.Warwick Allison2009-12-041-4/+8
|/ | | | Add Qt.resolvedUrl(url)
* undebugWarwick Allison2009-12-041-1/+0
|
* Prevent call to executeSql outside transaction (eg. if arg kept).Warwick Allison2009-12-041-0/+8
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-12-031-5/+7
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * fix includesOswald Buddenhagen2009-12-031-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes.
* | More detailed error message.Warwick Allison2009-12-031-2/+3
|/
* Undo most of 913dd563064e8047fe738fc9c79135adfb928977Warwick Allison2009-12-021-4/+4
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* Remove include styles that rely on configure.Warwick Allison2009-12-011-3/+3
| | | | May help modularization (syncqt and configure are Qt-specific).
* unwarnWarwick Allison2009-11-301-2/+2
|
* Check version for cached DB too.Warwick Allison2009-11-201-0/+2
|
* More SQL tests.Warwick Allison2009-11-201-114/+13
| | | | Less non-spec functionality in API.
* Clean-up SQL tests to not be order-dependentWarwick Allison2009-11-191-4/+14
| | | | | Add tests for new SQL APIs Remove some non-useful SQL API extensions.
* Fix for empty query results.Warwick Allison2009-11-191-2/+5
|
* Don't make assumptions about when SQLITE creates database files.Warwick Allison2009-11-181-2/+2
|
* Update SQL database support to current HTML5 specification.Warwick Allison2009-11-181-58/+187
|
* Fix binding (it should be resulted to arrays, since SQL and JS are not)Warwick Allison2009-11-171-2/+2
|
* Use QDir::separator() and follow no-trailing-slash convention.Warwick Allison2009-11-161-1/+2
| | | | Fixes QTBUG-5841
* Do not use "QtDeclarative/XXX" style includes in declarative module code,Warwick Allison2009-11-121-1/+1
| | | | as it breaks reinstalling the module against existing Qt.
* fix headersWarwick Allison2009-10-291-16/+16
|
* typoWarwick Allison2009-10-201-1/+1
| | | | QT-2335
* docWarwick Allison2009-10-201-0/+4
| | | | Record current DB type in INI for future extensibility.
* More tests for QmlSql, more WebKit-tested-validity.Warwick Allison2009-09-241-6/+112
|
* Fix Windows compile.Warwick Allison2009-09-181-6/+0
|
* Make SqlDatabase testable and add a basic test.Warwick Allison2009-09-181-40/+1
|
* Compile on windowsYann Bodson2009-09-171-0/+1
|
* Changed the use of QString::utf8() to QString::toUtf8() to make itErik Verbruggen2009-09-161-2/+2
| | | | compile without QT3_SUPPORT.
* Fix compilation on LinuxKai Koehne2009-09-161-1/+0
| | | | qmlsqldatabase.moc is not created any more
* Better SQL database performance / memory usage.Warwick Allison2009-09-161-12/+88
| | | | | Rows accessible incrementally. Rows.forwardOnly for optimization.
* Remove unnecessary use of QObjectsWarwick Allison2009-09-161-106/+75
| | | | QSqlDatabase is a shared copyable type anyway, so easy to use as QScriptValue variant.
* Basic first-working SQL database interface.Warwick Allison2009-09-161-0/+259
A simple Qt-based implementation of HTML5 SQL local storage databases.