Execute the given statement with the given input parameters
Execute the given statement with the given input parameters
public int ExecuteNonQuery(string,HybridDictionary);
Execute the given statement with the given input parameters and output parameters
public int ExecuteNonQuery(string,HybridDictionary,ref HybridDictionary);
Execute the given statement with the given input parameters, a transaction and a dictionary of output parameters that will be available with the connection is closed.
public int ExecuteNonQuery(string,HybridDictionary,IDbTransaction,ref HybridDictionary);
Execute the given statement with the given input parameters. A reference to an int value is passed to retrieve the return value of the statement call.
public int ExecuteNonQuery(string,HybridDictionary,ref int);
Execute the given statement with the given input parameters. A reference to an int value is passed to retrieve the return value of the statement call. This overload supports a transaction
public int ExecuteNonQuery(string,HybridDictionary,ref int,IDbTransaction);
DataFactory Class | SnapDAL Namespace