Assembly: Dal;
Namespace: Prognoz.Platform.Interop.Dal;
The IDalColumns interface contains properties and methods used to work with the cursor that contains system information about the fields of the tables stored in the database.
The interface does not have its own properties or methods. The interface use is given in description of the IDalConnection.Columns property.
| 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: