Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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.

In reply to sql queries updation improper by valavanp

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-04-23 13:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found