PMA\libraries\DatabaseInterface::getCompatibilities PHP Méthode

getCompatibilities() public méthode

Get supported SQL compatibility modes
public getCompatibilities ( ) : array
Résultat array supported SQL compatibility modes
    public function getCompatibilities()
    {
        $compats = array('NONE');
        $compats[] = 'ANSI';
        $compats[] = 'DB2';
        $compats[] = 'MAXDB';
        $compats[] = 'MYSQL323';
        $compats[] = 'MYSQL40';
        $compats[] = 'MSSQL';
        $compats[] = 'ORACLE';
        // removed; in MySQL 5.0.33, this produces exports that
        // can't be read by POSTGRESQL (see our bug #1596328)
        //$compats[] = 'POSTGRESQL';
        $compats[] = 'TRADITIONAL';
        return $compats;
    }