Simon Slavin <[email protected]> wrote: > Question for experts: Hmm. There's no sqlite3_exec16() ? Do I misunderstand > how it would be useful ?
sqlite3_exec is a thin wrapper around sqlite3_prepare, step and finalize, maintained for backward compatibility. Just use those, or their _16 counterparts, directly. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

