|   | DataExtensionsRetrieveRow(IDbConnection, Type, String, Int32, Object) Method | 
        
        
            Executes the SQL statement using IDbConnection, and returns the first DataRow in the result set.
            
        
        Namespace: GSF.DataAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static DataRow RetrieveRow(
	this IDbConnection connection,
	Type dataAdapterType,
	string sql,
	int timeout,
	params Object[] parameters
)
<ExtensionAttribute>
Public Shared Function RetrieveRow ( 
	connection As IDbConnection,
	dataAdapterType As Type,
	sql As String,
	timeout As Integer,
	ParamArray parameters As Object()
) As DataRow
public:
[ExtensionAttribute]
static DataRow^ RetrieveRow(
	IDbConnection^ connection, 
	Type^ dataAdapterType, 
	String^ sql, 
	int timeout, 
	... array<Object^>^ parameters
)
[<ExtensionAttribute>]
static member RetrieveRow : 
        connection : IDbConnection * 
        dataAdapterType : Type * 
        sql : string * 
        timeout : int * 
        parameters : Object[] -> DataRow GSF.Data.DataExtensions.RetrieveRow = function(connection, dataAdapterType, sql, timeout, ... parameters);
Parameters
- connection  IDbConnection
- The IDbConnection to use for executing the SQL statement.
- dataAdapterType  Type
- The Type of data adapter to use to retrieve data.
- sql  String
- The SQL statement to be executed.
- timeout  Int32
- The time in seconds to wait for the SQL statement to execute.
- parameters  Object
- The parameter values to be used to fill in IDbDataParameter parameters identified by '@' prefix in sql expression.
Return Value
DataRowThe first 
DataRow in the result set.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
IDbConnection. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 See Also
See Also