Hi,
Does SQLite's sqlite_exec_printf function accept length modifiers, like printf from stdio does?
It doesn't seem like it does, which is bad for me who want to insert 64 bit integers (using the ll modifier).
If it doesn't, any other idea of how I can convert 64 bit integers to strings before inserting?
snprintf into a temp buffer, then use %s (or %q) with sqlite_exec_printf. but all the sqlite functions should certainly take %lld.
-- Ted Unangst www.coverity.com Coverity, Inc.