NAME

TSQL::AST - 'Abstract Syntax Tree' for TSQL.

VERSION

Version 0.01_005

SYNOPSIS

DESCRIPTION

DEPENDENCIES

TSQL::AST depends on the following modules:

AUTHOR

Ded MedVed, <dedmedved at cpan.org>

BUGS

Please report any bugs or feature requests to bug-tsql-ast at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=TSQL::AST. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

METHODS

new

  • TSQL::AST->new()

It creates and returns a new TSQL::AST object.

parse

  • $ast->parse( array of sqlfragments )

This is the method which parses the split up SQL code.

makeObject

  • $ast->makeObject(sqlfragment)

This is the method which decides what kind of object is represented by the current 'statement'.

parseBatch

  • $ast->parseBatch( array of sqlfragments )

This is a method which parses the split up SQL code.

parseBlock

  • $ast->parseBlock( array of sqlfragments )

This is a method which parses the split up SQL code.

parseIf

  • $ast->parseIf( array of sqlfragments )

This is a method which parses the split up SQL code.

parseScript

  • $ast->parseScript( array of sqlfragments )

This is the method which parses the split up SQL code from the original script.

my $sql_splitter = TSQL::SplitStatement->new();

my @statements = $sql_splitter->splitSQL( 'SELECT 1;SELECT 2; );

my $sql_parser = TSQL::AST->new();

my $ast = $sql_parser->parseScript( \@statements );

parseTryCatch

  • $ast->parseTryCatch( array of sqlfragments )

This is a method which parses the split up SQL code.

parseWhile

  • $ast->parseWhile( array of sqlfragments )

This is a method which parses the split up SQL code.

LIMITATIONS

No limitations are currently known, as far as the intended usage is concerned. You *are* bound to uncover a large number of problems.

Please report any problematic cases.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc TSQL::AST

You can also look for information at:

ACKNOWLEDGEMENTS

    None yet.

SEE ALSO

LICENSE AND COPYRIGHT

Copyright 2012 Ded MedVed.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.