[EMAIL PROTECTED] wrote:

We have been using sqlite3_get_table_printf, sqlite3_exec_printf functions in our C application to execute the queries. I find that these APIs are not available in v3.0.7 though it was available in v3.0.3. May I know why these APIs are not available in the stable sqlite 3.0.7 and may I know the alternative APIs that I can use continuing my printf like query command constructions?



These functions were removed by check-in [1868] because you can easily reproduce them yourself as follows:

   char *z = sqlite3_mprintf(zFormat, ...);
   sqlite3_exec(..., z, ...);
   sqlite3_free(z);


-- D. Richard Hipp -- [EMAIL PROTECTED] -- 704.948.4565



Reply via email to