On 22 Jul 2019, at 10:53am, test user <example.com.use...@gmail.com> wrote:

> A new function could be added:
> 
> For query string "SELECT ?, ?10"
> 
> `sqlite3_bind_parameter_valid_indexes() -> [1, 10]`
> 
> How can I propose adding this?

As given in my previous response, the SQLite library already contains these two:

int sqlite3_bind_parameter_count(sqlite3_stmt*);
const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int);

Which provide the same information.  If you want to create your own routine 
which calls them to make a list, that's fine.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to