hi guys, i am trying to write a simple utility to do the following:
SELECT a bunch of lines from a remote database and INSERT into a local one. i seem to be running into some problems with the following relevant code sections:
while ( my (@log_entry) = $xlh->fetchrow_array ) {
push(@log_entry, undef, "$_") ;
$mlh->execute(@log_entry) ;
last if $mch->err ;
}
sub get_log() {
my $dbh = shift ;
my $table = "log" ;
my $field = join(',',@log_fields[0..6]) ;
my $sth = $dbh->prepare( qq{ SELECT $field
FROM $table
LIMIT 25 } )
or db_err("Can't prepare statement: $DBI::errstr") ;
$sth->execute
or db_err("Can't execute statement: $DBI::errstr") ;
return($sth) ;
}
sub put_log() {
my $dbh = shift ;
my $table = "log" ;
my @field = @_ ;
my ( $nph, $value_ph ) = "$#field" ;
my $field = join(',',@field) ;
while ( $nph-- > -1 ) {
$value_ph .= '? ' ;
} ;
my $sth = $dbh->prepare( qq{ INSERT INTO $table
($field)
VALUES ( $value_ph ) } )
or db_err("Can't prepare statement: $DBI::errstr") ;
return($sth) ;
}
i keep on getting the following error mesg:
DBD::mysql::st execute failed: You have an error in your SQL syntax near 'NULL NULL NULL 'Login OK.
someone pls help!!!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.