On Sun, 2005-02-13 at 16:18 -0600, Jeff Thompson wrote: > sqlite3_exec > sqlite3_mprintf > > I was wondering why there are no unicode versions > of these (and possibly others) functions? >
sqlite3_exec is implemented in using other published APIs. It is a convenience wrapper provided for historical compatibility. If you want a UTF-16 version, make a copy of the UTF-8 version and adjust as necessary. I don't know how to make sqlite3_mprintf() UTF-16 aware. -- D. Richard Hipp <[EMAIL PROTECTED]>

