Kiko has asked for the wisdom of the Perl Monks concerning the following question:
Hi All,
This is a small portion of a script i'm working on. All it's supposed to do is insert several entries into a MySql database. I have the following array @icodes="CEN01-SJU1-022102A CEN02-MEX1-022702P CTE01-SJU1-022202A CTE02-MEX1-022802P"; When i run the small part of the script all it does is insert the first entry in the array. Everything in the insert statement should remain the same for each entry, except for the $t which is supposed to change for every entry in the array.
Any help will be greatly appreciated.
-Kiko
This is a small portion of a script i'm working on. All it's supposed to do is insert several entries into a MySql database. I have the following array @icodes="CEN01-SJU1-022102A CEN02-MEX1-022702P CTE01-SJU1-022202A CTE02-MEX1-022802P"; When i run the small part of the script all it does is insert the first entry in the array. Everything in the insert statement should remain the same for each entry, except for the $t which is supposed to change for every entry in the array.
Any help will be greatly appreciated.
-Kiko
my ($order_num) = sprintf "%lx",time; # Generates the order number # Adds ON (Order Number) infront of the generated number and makes eve +rything upper case $order_num = uc("ON$order_num"); my ($reg) = $dbh->prepare('INSERT INTO registrations (order_num, custo +mer_id, payment_type, icode) VALUES (?, ?, ?, ?)'); foreach my $t (@icodes) { $reg->execute($order_num, $customer_id, 'CREDIT', $t); }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Inserting more than one entry into a MySql DB
by dws (Chancellor) on Feb 01, 2002 at 19:14 UTC | |
by Kiko (Scribe) on Feb 01, 2002 at 19:45 UTC | |
by dws (Chancellor) on Feb 01, 2002 at 21:27 UTC | |
Re: Inserting more than one entry into a MySql DB
by screamingeagle (Curate) on Feb 01, 2002 at 19:15 UTC | |
by Kiko (Scribe) on Feb 01, 2002 at 19:48 UTC | |
Re: Inserting more than one entry into a MySql DB
by chromatic (Archbishop) on Feb 01, 2002 at 19:16 UTC | |
Re: Inserting more than one entry into a MySql DB
by arturo (Vicar) on Feb 01, 2002 at 19:19 UTC |
Back to
Seekers of Perl Wisdom