10-10-2012 08:42 AM
is it possible to save data in a application just with qml?
e.g. i want to save some settings which the user has set.
or a array of integers.
or is it even possible to use sqlite?
Solved! Go to Solution.
10-10-2012 11:17 AM
I don't believe that it is possible to do this in qml. The langugage is actually much more limited then RIM makes it out to be...
10-10-2012 12:08 PM
Using an xml file, json file or sqlight would be relatively easy to implement this. Personnaly for user setting I would try xml or json.
10-10-2012 04:59 PM
10-11-2012 01:36 AM
I could be completely wrong, but QSettings should work for you.
The QSettings example app is the StarShip one.
10-11-2012 02:13 AM - edited 10-11-2012 08:04 AM
willie44 wrote:I could be completely wrong, but QSettings should work for you.
The QSettings example app is the StarShip one.
QSettings is only usable in C++
but this seems to be the only way to do it