heribert wrote: > The threads prepares their own sqlite3_stmt's with select statements > to the properties currently needed
A single statement "SELECT Value FROM T WHERE Name = ?" might suffice. > Is their any limitation of sqlite3_stmt bound to a database? Only memory. > How much memory is used by a sqlite3_stmt? Not very much. But preparing a statement is very fast; don't try to be too clever. Regards, Clemens _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

