Zend_Db_Adapter_Pdo_Mssql::listTables PHP 메소드

listTables() 공개 메소드

Returns a list of the tables in the database.
public listTables ( ) : array
리턴 array
    public function listTables()
    {
        $sql = "SELECT name FROM sysobjects WHERE type = 'U' ORDER BY name";
        return $this->fetchCol($sql);
    }