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

PowerExec() public static method

Execute a stored procedure with passed form field names in string array. Uses the default connection string "Halide".

This method assumes that the stored procedure returns a value. If it does not, the procedure will execute, but an exception will be thrown.

public static PowerExec ( string procedureName, string paramNames, string paramValues ) : String
procedureName string Name of stored procedure.
paramNames string string array with field names.
paramValues string string array with field values.
return String
        public static String PowerExec(string procedureName, string[] paramNames, string[] paramValues)
        {
            return PowerExec(procedureName, paramNames, paramValues, "Halide");
        }

Same methods

H3Sql::PowerExec ( String procedureName, String paramNames, String paramValues, System.Boolean returnsValue, String connectionStringName ) : String
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