The IDalTables interface contains properties and methods used to work with cursor that contains system information about tables stored in the database. Working with the database server, there is a limit on the number of cursors opened simultaneously, that is why user should close unused cursors timely using the Close method.
| Property name | Brief description | |
| The Fields property returns a collection of fields of the cursor that was received after executing SQL query. | ||
| The Command property returns an object used to work with database using the SQL queries. |
| Method name | Brief description | |
| The Close method closes a cursor. | ||
| The Eof method returns whether the current record is last in the table that became a result of command execution on the database server. | ||
| 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: