How to manipulate a very large data using QT?
-
-
Hi depends on what you want to display, in what context and how the data should be organized.
It might make sense to read the Model/View classes and check out if it suits your needs. The View(e.g. a QTableView) will only request data from the model (your SQL data) that is displayed. That will keep the load to a minimum. Using the QSQLmodel class will help a lot. Never used it myself, but with the tutorial about Model/View it wouldn't take to much time to master.
greetz -
SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
bq. And if i developed a application using sqlite, do the users also need to install that while executing in different machine?
No. SQLite will be a part of your program.