SQL::Abstract::Tree man page on MacOSX

Man page or keyword search:  
man Server   23457 pages
apropos Keyword Search (all sections)
Output format
MacOSX logo
[printable version]

SQL::Abstract::Tree(3)User Contributed Perl DocumentatioSQL::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)
[top]

List of man pages available for MacOSX

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net