On 28 Nov 2017, at 12:38am, Peter Halasz <[email protected]> wrote:
> Please can SQLite developers make the ROW ID status of a field visible in > future versions? If it’s cone, the obvious place would be to add a column to <https://sqlite.org/pragma.html#pragma_table_info> Can you not deduce what you want using sqlite_sequence, as described in section 2.6.1 of <https://www.sqlite.org/fileformat2.html#internal_schema_objects> ? This allows you to distinguish a primary key which happens to be an integer from an |NTEGER PRIMARY KEY. Another useful thing might be to find the command used to create the table from the sqlite_master table and see whether it includes the text "INTEGER PRIMARY KEY". Simon. _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

