|
NAMEText::Query::SolveSQL - Apply query expression to an SQL database SYNOPSIS use Text::Query;
my $q=new Text::Query('field1: ( hello and world )',
-parse => 'Text::Query::ParseAdvanced',
-solve => 'Text::Query::SolveSQL',
-build => 'Text::Query::BuildSQLFulcrum',
-select => 'select * from t1 where __WHERE__');
my $db = DBI->connect(undef, undef, undef);
my @rows = $q->match($db);
DESCRIPTIONApplies a select order computed by a "Text::Query" object whose builder is derived from "Text::Query::BuildSQL" to a "DBI" object. METHODS
SEE ALSOText::Query(3) Text::Query::Solve(3) AUTHORSLoic Dachary (loic@senga.org) POD ERRORSHey! The above document had some coding errors, which are explained below:
|