The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DBIx::SQLEngine::Criteria::LiteralSQL - Holder for SQL snippets

SYNOPSIS

  my $crit = DBIx::SQLEngine::Criteria::LiteralSQL->new( "name = 'Dave'" );

DESCRIPTION

DBIx::SQLEngine::Criteria::Comparison objects are built around an array of a SQL string, followed by values to be bound the the '?' placeholders in the string, if any.

REFERENCE

Constructor

new
  DBIx::SQLEngine::Criteria::LiteralSQL->new( $sql ) : $Comparison

  DBIx::SQLEngine::Criteria::LiteralSQL->new( $sql, @params ) : $Comparison

Constructor.

VERSION

2002-01-31 Simon: Created.

SEE ALSO

DBIx::SQLEngine::ReadMe.