This the core SQL execution method that returns a DataTable in a Dataset.
Use this method for any operations that require custom SQL. This method will use the internal Data member to retrieve the data from the backend and store it into a Table in the internal DataSet.
public int Execute( string Sql, string Tablename );
Return Value
int
Parameters
Sql
SQL Command String
Tablename
Name of the table in the internal DataSet that is created.
Overloads:
public int Execute( IDbCommand SqlCommand, string Tablename );
public int Execute( string SqlCommand, string Tablename, IDbDataParameter[] Parameters );
See also:
Class wwBusiness© West Wind Technologies, 1996-2018 • Updated: 05/04/05
Comment or report problem with topic