db_table_size
| Definition: | integer i = db_table_size() |
| Description: | Return the current number of records in the current table. |
| pwa/p2js: | Not supported |
| Example: |
-- look at all records in the current table
for i=1 to db_table_size() do
if db_record_key(i)=0 then
puts(1, "0 key found\n")
exit
end if
end for
|
| See Also: | db_select_table |