Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



SQL::Abstract::Tree(3)               User Contributed Perl Documentation              SQL::Abstract::Tree(3)



NAME
       SQL::Abstract::Tree - Represent SQL as an AST

SYNOPSIS
        my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });

        print $sqla_tree->format('SELECT * FROM foo WHERE foo.a > 2');

        # SELECT *
        #   FROM foo
        #   WHERE foo.a > 2

METHODS
   new
        my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });

        $args = {
          profile => 'console',      # predefined profile to use (default: 'none')
          fill_in_placeholders => 1, # true for placeholder population
          placeholder_surround =>    # The strings that will be wrapped around
                     [GREEN, RESET], # populated placeholders if the above is set
          indent_string => ' ',      # the string used when indenting
          indent_amount => 2,        # how many of above string to use for a single
                                     # indent level
          newline       => "\n",     # string for newline
          colormap      => {
            select => [RED, RESET], # a pair of strings defining what to surround
                                    # the keyword with for colorization
            # ...
          },
          indentmap     => {
            select        => 0,     # A zero means that the keyword will start on
                                    # a new line
            from          => 1,     # Any other positive integer means that after
            on            => 2,     # said newline it will get that many indents
            # ...
          },
        }

       Returns a new SQL::Abstract::Tree object.  All arguments are optional.

       profiles

       There are four predefined profiles, "none", "console", "console_monochrome", and "html".  Typically a
       user will probably just use "console" or "console_monochrome", but if something about a profile
       bothers you, merely use the profile and override the parts that you don't like.

   format
        $sqlat->format('SELECT * FROM bar WHERE x = ?', [1])

       Takes $sql and "\@bindargs".

       Returns a formatting string based on the string passed in

   parse
        $sqlat->parse('SELECT * FROM bar WHERE x = ?')

       Returns a "tree" representing passed in SQL.  Please do not depend on the structure of the returned
       tree.  It may be stable at some point, but not yet.

   unparse
        $sqlat->unparse($tree_structure, \@bindargs)

       Transform "tree" into SQL, applying various transforms on the way.

   format_keyword
        $sqlat->format_keyword('SELECT')

       Currently this just takes a keyword and puts the "colormap" stuff around it.  Later on it may do more
       and allow for coderef based transforms.

   pad_keyword
        my ($before, $after) = @{$sqlat->pad_keyword('SELECT')};

       Returns whitespace to be inserted around a keyword.

   fill_in_placeholder
        my $value = $sqlat->fill_in_placeholder(\@bindargs)

       Removes last arg from passed arrayref and returns it, surrounded with the values in
       placeholder_surround, and then surrounded with single quotes.

   indent
       Returns as many indent strings as indent amounts times the first argument.

ACCESSORS
   colormap
       See "new"

   fill_in_placeholders
       See "new"

   indent_amount
       See "new"

   indent_string
       See "new"

   indentmap
       See "new"

   newline
       See "new"

   placeholder_surround
       See "new"



perl v5.16.2                                     2012-06-14                           SQL::Abstract::Tree(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.