How can I determine the total number of records in a sqlite3 table?
thanx
Professional Software Development Tools
How can I determine the total number of records in a sqlite3 table?
thanx
take a look at this page about SELECT COUNT
how to make it in sqlite3 plugin.?
Query = the function that executes select queryCode:Row = Query("SELECT COUNT(*) AS TotalRecords FROM table_name") total = Row.TotalRecords
Row = the fetched record-set (single row)
Row.TotalRecords = in above query we assign total records to an alias called 'TotalRecords'
so it becomes the first column name
and the table_name is the name of table you want count records of
thanks retest