DeveelDB
20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
|
The response to a command executed via the IDatabaseInterface.ExecuteQuery method in the IDatabaseInterface interface. /summary> More...
Public Member Functions | |
QueryResultColumn | GetColumn (int column) |
Properties | |
int | ResultId [get] |
Returns a number that identifies this command within the set of queries executed on the connection. /summary> More... | |
int | QueryTimeMillis [get] |
int | RowCount [get] |
int | ColumnCount [get] |
The number of columns in the command result. More... | |
string | Warnings [get] |
The response to a command executed via the IDatabaseInterface.ExecuteQuery method in the IDatabaseInterface interface. /summary>
This contains general information about the result of the command.
Definition at line 27 of file IQueryResponse.cs.
QueryResultColumn Deveel.Data.Protocol.IQueryResponse.GetColumn | ( | int | column | ) |
summary> Returns any warnings about the command or null if there were no warnings. /summary>
Implemented in Deveel.Data.Protocol.ServerConnector.QueryResponse.
|
get |
The number of columns in the command result.
summary> Gets the QueryResultColumn object that describes column at the zero-based index in the result. /summary> param name="column">
returns>
Definition at line 53 of file IQueryResponse.cs.
|
get |
summary> The total number of rows in the command result. /summary>
This is known ahead of time, even if no data in the command has been accessed.
Definition at line 40 of file IQueryResponse.cs.
|
get |
Returns a number that identifies this command within the set of queries executed on the connection. /summary>
This is used for identifying this command in subsequent operations.
summary> The time, in milliseconds, that the command took to execute. /summary>
Definition at line 35 of file IQueryResponse.cs.
|
get |
Definition at line 48 of file IQueryResponse.cs.
|
get |
Definition at line 67 of file IQueryResponse.cs.