hi Gunther,
ok , now I have a javascript object in wich I have different keys for users, and want to store that tree in de settings db.
but maybe I can make a copy of the structure and store that object.
but I do not know when the next client is going to sent data which I have to store in the object.
or I have to make a SQLite db for every client.
I also ran into this page: http://www.sqlite.org/threadsafe.html
so I do not know in what mode SQLite is compiled in QT.
single / multi thread or Serialized
SQLite supports three different threading modes:
- <b>Single-thread</b>. In this mode, all mutexes are disabled and SQLite is unsafe to use in more than a single thread at once.
- <b>Multi-thread</b>. In this mode, SQLite can be safely used by multiple threads provided that no single database connection is used simultaneously in two or more threads.
- <b>Serialized</b>. In serialized mode, SQLite can be safely used by multiple threads with no restriction.