Click or drag to resize

AdoDataConnectionExecuteReader(Int32, String, Object) Method

Executes the SQL statement using Connection, and builds a IDataReader.

Namespace: GSF.Data
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.251-beta+c370f3da3791592278238855631f53a5ff418c68
Syntax
public IDataReader ExecuteReader(
	int timeout,
	string sqlFormat,
	params Object[] parameters
)
View Source

Parameters

timeout  Int32
The time in seconds to wait for the SQL statement to execute.
sqlFormat  String
Format string for the SQL statement to be executed.
parameters  Object
The parameter values to be used to fill in IDbDataParameter parameters.

Return Value

IDataReader
A IDataReader object.
See Also