< AS   (Previous) Table of Contents (Next)   AS: Getting Keyword >

AS: Setting Keyword

/**
 * Sets the named property according to which DBMS is in use
 *
 * @return boolean  true if successful.  Does die() if the DBMS is unkown.
 */
function setAsKeyword() {
    switch ($this->phptype . ':' . $this->dbsyntax) {
        case 'fbsql:fbsql':
        case 'ibase:firebird':
        case 'mssql:mssql':
        case 'mysql:mysql':
        case 'mysqli:mysqli':
        case 'odbc:access':
        case 'odbc:db2':
        case 'pgsql:pgsql':
        case 'sqlite:sqlite':
        case 'sybase:sybase':
            $this->AsKeyword = ' AS ';
            break;
        case 'oci8:oci8':
            $this->AsKeyword = ' ';
            break;
        default:
            $this->AsKeyword = false;
            die('unknown phptype/dbsyntax in setAsKeyword()');
    }
    return true;
}