The IDatabaseTables interface contains properties and methods of tables collection stored on a database server.
| Property name | Brief description | |
| TableName | The TableName property returns a physical name of the table in a database. |
| Property name | Brief description | |
| CommandCommand | The Command property returns an object used to work with database using the SQL queries. | |
| FieldsFields | The Fields property returns a collection of fields of the cursor that was received after executing SQL query. |
| Method name | Brief description | |
| CloseClose | The Close method closes a cursor. | |
| EofEof | The Eof method returns whether the current record is the last in the table that became a result of command execution on the database server. | |
| NextNext | The Next method implements transition to the next record in the table that became a result of command execution on the database server. |
See also: