| SQL-Statement documentation | view source | Contained in the SQL-Statement distribution. |
SQL::Statement::Placeholder - implements getting the next placeholder value
# create an placeholder term with an SQL::Statement object as owner # and the $argnum of the placeholder. my $term = SQL::Statement::Placeholder->new( $owner, $argnum ); # access the result of that operation $term->value( $eval );
SQL::Statement::Placeholder implements getting the next placeholder value. Accessing a specific placeholder is currently unimplemented and not tested.
SQL::Statement::Placeholder ISA SQL::Statement::Term
Instantiates a new SQL::Statement::Placeholder instance.
Returns the value of the next placeholder.
Copyright (c) 2009,2010 by Jens Rehsack: rehsackATcpan.org
All rights reserved.
You may distribute this module under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file.
| SQL-Statement documentation | view source | Contained in the SQL-Statement distribution. |