"BOB_GOREN" <[email protected]> wrote in message news:[email protected] > I am converting from sqlite 2.8.13 to 3.6.11 and am wondering what is > the replacement for sqlite_exec_printf.
The most direct replacement is sqlite3_mprintf followed by sqlite3_exec. But consider switching to statement API instead - see sqlite3_prepare[_v2] et al. Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

