Argentini.Halide.H3Sql.PowerExec C# (CSharp) Method

PowerExec() public static method

Execute a stored procedure with passed form field names in string array.
public static PowerExec ( String procedureName, String paramNames, String paramValues, System.Boolean returnsValue, String connectionStringName ) : String
procedureName String Name of stored procedure.
paramNames String string array with field names.
paramValues String string array with field values.
returnsValue System.Boolean If the stored procedure returns a value, set to true, /// otherwise, set to false. When false, the number of rows affected is returned as a string.
connectionStringName String Name of a connection string in the Web.config file.
return String
        public static String PowerExec(String procedureName, String[] paramNames, String[] paramValues, Boolean returnsValue, String connectionStringName)
        {
            return PowerExec(procedureName, paramNames, paramValues, returnsValue, connectionStringName, 30);
        }

Same methods

H3Sql::PowerExec ( String procedureName, String paramNames, String paramValues, System.Boolean returnsValue, String connectionStringName, Int32 timeOut ) : String
H3Sql::PowerExec ( String procedureName, String paramNames, String paramValues, String connectionStringName ) : String
H3Sql::PowerExec ( string procedureName, string paramNames, string paramValues ) : String