SQLite on Qt Quick vs in C++
-
If I need to access a database often and will be doing so from QML, it seems convenient to use the SQLite API available with Qt Quick. But I'm worried about performance. Is there any reason why it could be faster when working with large amounts of data and very frequent queries to instead use the SQLite from C++ (queries, etc) and just have the QML communicate with C++ for the data it requests?