Click or drag to resize

DbResultSet Class

Contains the results of a query to an SqlServer database:
Inheritance Hierarchy

Namespace:  Cadcorp.DataAccess
Assembly:  Cadcorp.GFB.DataAccess (in Cadcorp.GFB.DataAccess.dll) Version: 9.0.2618.0 (9.0.2618.0)
Syntax
public class DbResultSet : ResultSet

The DbResultSet type exposes the following members.

Constructors
  NameDescription
Public methodDbResultSet
Initializes a new instance of the DbResultSet class
Top
Properties
  NameDescription
Public propertyHasRows
Returns true if the resultset contains data.
(Overrides ResultSetHasRows.)
Top
Methods
  NameDescription
Public methodClose
Close the resultset's reader:
(Overrides ResultSetClose.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExposeReader
Exposes the data reader for use in data binding:
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGet
Returns the value of the specified field in the current row:
(Overrides ResultSetGet(String).)
Public methodGetBool
Returns a boolean field value.
(Inherited from ResultSet.)
Public methodGetDate
Returns a date field value.
(Inherited from ResultSet.)
Public methodGetDouble
Returns a double field value.
(Inherited from ResultSet.)
Public methodGetFloat
Returns a float field value.
(Inherited from ResultSet.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetInt
Returns an int field value.
(Inherited from ResultSet.)
Public methodGetLong
Returns a long field value.
(Inherited from ResultSet.)
Public methodGetNullableBool
Returns a nullable boolean field value.
(Inherited from ResultSet.)
Public methodGetNullableDate
Returns a nullable date field value.
(Inherited from ResultSet.)
Public methodGetNullableDouble
Returns a nullable double field value;
(Inherited from ResultSet.)
Public methodGetNullableFloat
Returns a nullable float field.
(Inherited from ResultSet.)
Public methodGetNullableInt
Returns a nullable int field value.
(Inherited from ResultSet.)
Public methodGetNullableLong
Returns a nullable long field value.
(Inherited from ResultSet.)
Public methodGetString
Returns a string field value.
(Inherited from ResultSet.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHasValue
Returns whether the field has a non-null value or not:
(Inherited from ResultSet.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodNext
Moves to the next record in the resultset, returning false if no more records remain:
(Overrides ResultSetNext.)
Public methodNextResult
Advances the data reader to the next result, when reading the results of batch Transact-SQL statements:
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Protected fieldreader
Top
See Also