Hi monks,
I have the following code to insert into mysql db.
i am posting just the code which i have problem.
@color=(Blue, Silver);
$newpid=8000;
foreach $color(@color){
$color=~s/^\s*//g;
my $incolor_qry="insert into colorimage_info(pid,color) values
+ ('$newpid','$color')";
my $incolor_qy=$db->prepare($incolor_qry);
$incolor_qy->execute;
}
After inserting this i need to update the rows which i inserted by the following code:
@color_image=(a1.jpg, b1.jpg);
foreach $color_image(@color_image){
$color_image=~s/^\s*//g;
my $upcolor_qry="update colorimage_info set color_image='$colo
+r_image.JPG' where id='$newpid';
my $upcolor_qy=$db->prepare($upcolor_qry);
$upcolor_qy->execute;
}
The results which i am getting is
pid cid color color_image
8000 1 Blue a1.jpg
8000 2 Silver a1.jpg
The color_image column is not updated properly. I am missing some thing here. Can anyone tell me where i am wrong.cid column is autocremented and not null.
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.