db_create_table
| Definition: | integer i = db_create_table(string st) |
| Description: | Create a new table within the
current database using the name specified by the string st, which may not be the same
as any existing table in the
current database.
Returns DB_OK (0) on success. |
| pwa/p2js: | Not supported |
| Comments: | The table that you create will initially have 0 records. It becomes the current table. |
| Example: |
if db_create_table("my_new_table") != DB_OK then
puts(2, "Couldn't create my_new_table!\n")
end if
|
| See Also: | db_delete_table |