Assembly: Dal;
The IDalColumns interface contains properties and methods that are used to work with the cursor that contains system information about table fields 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 the collection of fields of the cursor that was received after executing SQL query. | ||
The Command property returns the object that is used to work with the database using SQL queries. |
Method name | Brief description | |
The Close method closes a cursor. | ||
The Eof method returns whether the current record is the last one in the table that was received after executing the command at the database server. | ||
The Next method implements transition to the next record in the table that was received after executing the command at the database server. |
See also: