 | IRecord Interface |
Represent a database record.
Namespace:
AskiaFieldCom.SqlDatabase
Assembly:
AskiaFieldCom (in AskiaFieldCom.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic interface class IRecord
The IRecord type exposes the following members.
Properties
| Name | Description |
---|
 | ColumnNames |
Returns the list of the column names.
|
 | Item |
Returns the database value from the specified column.
|
Top
Methods
| Name | Description |
---|
 | Contains |
Indicates if the record contains the a column with the specified name.
|
Top
RemarksThe column name is case insensitive `foo`, `Foo` or `FOO` will be equivalent.
RemarksUnlike the IDataReader, the IRecord is not mutable and still exists after the SQL connection is closed.
See Also