Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Include Protected Members
Include Inherited Members
Provides a means of reading query search results through the IDataReader interface. Each row of the IDataReader represents one search result.
The ResultTable type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() |
ResultTable() | Initializes a new instance of the ResultTable structure. |
![]() |
ResultTable(ResultTableInternal, Int32) | Initializes a new instance of the ResultTable structure. |
![]() |
ResultTable(DataTable, ResultType, Int32, Int32, Boolean, Int32) |
Top
Properties
Name | Description | |
---|---|---|
![]() |
Depth | |
![]() |
FieldCount | Gets the number of columns returned in the search results. |
![]() |
IsClosed | Gets a Boolean value indicating if the ResultTable is closed. |
![]() |
IsTotalRowsExact | |
![]() |
Item[Int32] | Gets a search result from the collection, based on the specified index. |
![]() |
Item[String] | Gets a search result from the collection, based on the name of the row to return. |
![]() |
RecordsAffected | |
![]() |
ResultType | Gets the type of search results in the result table. |
![]() |
RowCount | Gets the number of query results contained in the ResultTable object. |
![]() |
Table | Gets or sets the DataTable containing the search results. |
![]() |
TotalRows | Gets the number of search results returned in the result table. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Close | Closes the result table. |
![]() |
Dispose | Releases the resources for the result table. |
![]() |
Equals | (Inherited from Object.) |
![]() |
Finalize | (Inherited from Object.) |
![]() |
GetBoolean | Returns the value of the specified column as a Boolean. |
![]() |
GetByte | Returns the 8-bit unsigned integer value of the specified column. |
![]() |
GetBytes | Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset. |
![]() |
GetChar | Returns the character value of the specified column. |
![]() |
GetChars | Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset. |
![]() |
GetData | Returns an IDataReader for the specified column. |
![]() |
GetDataTypeName | Returns the data type information for the specified column. |
![]() |
GetDateTime | Returns the date and time data value for the specified column. |
![]() |
GetDateTimeUtc | Returns the date and time in coordinated universal time (UTC) for the specified column. |
![]() |
GetDecimal | Returns the fixed-position numeric value for the specified column. |
![]() |
GetDouble | Returns the double-precision floating point number for the specified column. |
![]() |
GetFieldType | Returns the type information for the specified column. |
![]() |
GetFloat | Returns the single-precision floating point number for the specified column. |
![]() |
GetGuid | Returns the GUID value for the specified column. |
![]() |
GetHashCode | (Inherited from Object.) |
![]() |
GetInt16 | Returns the 16-bit signed integer value for the specified column. |
![]() |
GetInt32 | Returns the 32-bit signed integer value for the specified column. |
![]() |
GetInt64 | Returns the 64-bit signed integer value for the specified column. |
![]() |
GetName | Returns the name for the specified column. |
![]() |
GetOrdinal | Returns the index for the specified column. |
![]() |
GetSchemaTable | Returns a DataTable object that describes the column metadata of the result table. |
![]() |
GetString | Gets the string value of the field at the specified ordinal index. |
![]() |
GetType | (Inherited from Object.) |
![]() |
GetValue | Returns the value of the specified field. |
![]() |
GetValues | Populates an array of objects with the column values for the current search result. |
![]() |
IsDBNull | Return whether the specified column is set to a null reference (Nothing in Visual Basic). |
![]() |
MemberwiseClone | (Inherited from Object.) |
![]() |
NextResult | Advances to the next search result. |
![]() |
Read | Advances the IDataReader to the next record. |
![]() |
ToString | (Inherited from Object.) |
Top