Re: [sqlite] sqlite3_mprintf not handling positional referencing / conversion

2019-02-28 Thread Dominique Devienne
On Thu, Feb 28, 2019 at 10:16 AM Richard Hipp wrote: > On 2/28/19, Dominique Devienne wrote: > > On Thu, Feb 28, 2019 at 12:14 AM Richard Hipp wrote: > >> Docs have now been updated. > > > > Hi. I don't see it in https://www.sqlite.org/src/timeline. > > Did I miss it? Or is that doc in some oth

Re: [sqlite] sqlite3_mprintf not handling positional referencing / conversion

2019-02-28 Thread Richard Hipp
On 2/28/19, Dominique Devienne wrote: > On Thu, Feb 28, 2019 at 12:14 AM Richard Hipp wrote: >> Docs have now been updated. > > Hi. I don't see it in https://www.sqlite.org/src/timeline. > Did I miss it? Or is that doc in some other repo? For historical reasons, the SQLite documentation is in a

Re: [sqlite] sqlite3_mprintf not handling positional referencing / conversion

2019-02-28 Thread Dominique Devienne
On Thu, Feb 28, 2019 at 12:14 AM Richard Hipp wrote: > On 2/27/19, lnksz wrote: > > 2) If not, a mention in the docs under disadvantages would be a > nice information > > Docs have now been updated. Hi. I don't see it in https://www.sqlite.org/src/timeline. Did I miss it? Or is that doc in som

Re: [sqlite] sqlite3_mprintf not handling positional referencing / conversion

2019-02-27 Thread Richard Hipp
On 2/27/19, lnksz wrote: > 2) If not, a mention in the docs under disadvantages would be a nice > information Docs have now been updated. -- D. Richard Hipp d...@sqlite.org ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mail

[sqlite] sqlite3_mprintf not handling positional referencing / conversion

2019-02-27 Thread lnksz
Dear all, I noticed that with the latest (3.27.2) version of sqlite3 if I try to use sqlite3_mprintf("SELECT * FROM [%1$s];", "table_name"); The "standard" printf family functions support this feature. (See http://pubs.opengroup.org/onlinepubs/9699919799/functions/printf.html