sajohn52 has asked for the wisdom of the Perl Monks concerning the following question:
my $dbh = DBI->connect('dbi:AnyData(RaiseError=>1):'); $dbh->func( 'DBTable', 'Pipe', "db.txt", $col_nm, 'ad_catalog' ) ; my $sth = $dbh->prepare( $sql ) ; $sth->execute() ; where $sql = select col1 , col2 , col3 , ... , colN from Depcorr where col1 = '12345' and $col_nm { col_names => 'col1,col2,col3,...colN' } ;
Unfortunately I am unable to display the columns name I actually used because of security reasons. TIA
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: dbd anydata does not return the correct result set
by andyford (Curate) on Aug 23, 2007 at 18:00 UTC | |
|
Re: dbd anydata does not return the correct result set
by jZed (Prior) on Aug 24, 2007 at 03:03 UTC |