http://www.perlmonks.org?node_id=990225


in reply to DBD::CSV - SQL Syntax - "AND" clause is not working properly

Note: Quoting "Strings" using double quotes are recognized as quoted identifiers (column or table names).

#!/usr/bin/perl -- use strict; use warnings; use Data::Dump; use DBI; use DBD::CSV; my $dbh = DBI->connect( "dbi:CSV:", undef, undef, { RaiseError => 1 }, ); my $sth = $dbh->prepare_cached(' select * from test.csv where OS=? and RELEASE=? LIMIT 8 '); $sth->execute( 'Fedora', 'Stentz' ); dd $sth->fetchall_arrayref; __END__ [["Fedora", "Stentz", 4]]

Replies are listed 'Best First'.
Re^2: DBD::CSV - SQL Syntax - "AND" clause is not working properly
by slayedbylucifer (Scribe) on Aug 28, 2012 at 17:48 UTC

      Again, vastly different from the code you posted here, which didn't even compile. The code you posted on SO looks like a combination of the replies you got here.

        Thats correct marto. This thread helped me to write the code in a better and correct manner which constituted my SO thread. But even after doing that, I did not get the intended result. Later it turned out that SQ::Statement was not properly installed. I want to thank you guys for your time and the guidance.