Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Re: Re: Re: Re: Re: Re: DBD::CSV - how to install? (FTP only)

by jZed (Prior)
on Dec 21, 2003 at 19:05 UTC ( [id://316228]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my $sth = $dbh->prepare("
            INSERT INTO foo (first_col,second_col) VALUES (?,?)
        ");
        $sth->execute( $string, $number );
    
  2. or download this
        my $DEBUG = 1; # comment out when not debugging
        my $sql = "INSERT INTO foo (first_col,second_col) VALUES (?,?)";
    ...
        print "$sql\n[@params]\n" if $DEBUG;
        my $sth = $dbh->prepare( $sql );
        $sth->execute( @params );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://316228]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (8)
As of 2024-04-24 12:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found