DB_dsql::describe PHP Метод

describe() публичный Метод

Creates a query for listing tables in databse-specific form Agile Toolkit DSQL does not pretend to know anything about model structure, so result parsing is up to you.
public describe ( string $table = null ) : DB_dsql
$table string Table
Результат DB_dsql clone of $this
    public function describe($table = null)
    {
        $q = clone $this;
        if ($table !== null) {
            $q->table($table);
        }
        return $q->SQLTemplate('describe');
    }