| IRecord Interface |
Represent a database record.
Namespace:
AskiaFieldCom.SqlDatabase
Assembly:
AskiaFieldCom (in AskiaFieldCom.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public 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.
|
TopMethods
| Name | Description |
---|
| Contains |
Indicates if the record contains the a column with the specified name.
|
TopRemarks The column name is case insensitive `foo`, `Foo` or `FOO` will be equivalent.
Remarks Unlike the IDataReader, the IRecord is not mutable and still exists after the SQL connection is closed.
See Also