revDatabaseTableNames |
Type | function |
Dictionary | LCS |
Library | LiveCode Script |
Syntax | revDatabaseTableNames(<databaseID>)
|
Synonyms | revdb_tablenames |
Associations | database library |
Summary | Returns a list of the table names in the current database.
|
Introduced | 1.1.1 |
Changes | The revDatabaseTableNames synonym was added in version 2.0.
|
OS | mac, windows, linux, ios, android |
Platforms | desktop, server, mobile |
Parameters | Name | Type | Description |
---|
databaseID | | The number returned by the revOpenDatabase function when the database
was opened.
|
|
Example | if tTableName is among the lines \
of revDatabaseTableNames(sgDatabaseId) then
insertData tTableName, tData
end if
|
Values | Name | Type | Description |
---|
return | | The revDatabaseTableNames function returns a list (one per line) of
table names. If an error was encountered, the result will be set to a
string beginning with revdberr.
|
The result | | If an error was encountered, the result will be set to a string
beginning with revdberr.
|
|
Related | Command: revExecuteSQL
Function: revOpenDatabase
|
Security | disk, network |
Description | You can use the revDatabaseTableNames function to verify that a
user-specified table name is correct or to display a list of tables for
the user to choose between.
Important: The revDatabaseTableNames function is part of the
Database library. To ensure that the function works in a standalone
application, you must include this custom library when you create your
standalone. In the Inclusions section of the General screen of the
Standalone Application Settings window, make sure the
"Database Support" checkbox is checked and the database drivers you
are using are selected in the list of database drivers.
|