Database tableName()
syntax: |
database.tableName(n) |
where: |
n - Zero-based integer corresponding to the table in the database.
|
return: |
string - name of the table in the database with index n.
|
description: |
This method returns the name of the database table corresponding to the specified index, n.
|
see: |
#link <sedbc>, Database table(), Database tables()
|
example: |
// fetch the name of database table 0 tableName = db.tableName( 0 ); |