|   | AdoDataConnectionRetrieveRow(String, Object) Method | 
        
        
            Executes the SQL statement using 
Connection, and returns the first 
DataRow in the result set.
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic DataRow RetrieveRow(
	string sqlFormat,
	params Object[] parameters
)
Public Function RetrieveRow ( 
	sqlFormat As String,
	ParamArray parameters As Object()
) As DataRow
public:
DataRow^ RetrieveRow(
	String^ sqlFormat, 
	... array<Object^>^ parameters
)
member RetrieveRow : 
        sqlFormat : string * 
        parameters : Object[] -> DataRow function RetrieveRow(sqlFormat, ... parameters);
Parameters
- 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
DataRowThe first 
DataRow in the result set.
 See Also
See Also