logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SQL::Statement::Placeholder - implements getting the next placeholder value

Description

       SQL::Statement::Placeholder implements getting the next placeholder value.  Accessing a specific
       placeholder is currently unimplemented and not tested.

Inheritance

         SQL::Statement::Placeholder
         ISA SQL::Statement::Term

Methods

new
       Instantiates a new "SQL::Statement::Placeholder" instance.

   value
       Returns the value of the next placeholder.

Name

       SQL::Statement::Placeholder - implements getting the next placeholder value

Synopsis

         # 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 );

See Also