Click or drag to resize

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 IRecord

The IRecord type exposes the following members.

Properties
  NameDescription
Public propertyColumnNames
Returns the list of the column names.
Public propertyItem
Returns the database value from the specified column.
Top
Methods
  NameDescription
Public methodContains
Indicates if the record contains the a column with the specified name.
Top
Remarks
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