adoSchema::ExecuteInline PHP Method

ExecuteInline() public method

Call this method to enable or disable inline execution of the schema. If the mode is set to TRUE (inline execution), AXMLS applies the SQL to the database immediately as each schema entity is parsed. If the mode is set to FALSE (post execution), AXMLS parses the entire schema and you will need to call adoSchema::ExecuteSchema() to apply the schema to the database.
public ExecuteInline ( boolean $mode = NULL ) : boolean
$mode boolean execute
return boolean current execution mode
    function ExecuteInline($mode = NULL)
    {
        if (is_bool($mode)) {
            $this->executeInline = $mode;
        }
        return $this->executeInline;
    }