Well, you havent told me what the problem is, but I'll try to help with what I can.
sub add_customer{
my ($company,$fname,$lname,$phn,$b2stre,$b2city,$b2stat,$b2zip,$s2st
+re,$s2city,$s2stat,$s2zip) = @_;
my ($handl) = DBI->connect('DBI:mysql:advanc'); or die "Couldn't con
+nect to database: " . DBI->errstr;
my $sql = "INSERT INTO customers
(Company,FirstName,LastName,PhoneNumber,Bill2Street,Bill2City,Bill2S
+tate,Bill2Zip,Ship2Street,Ship2City,Ship2State,Ship2Zip)
VALUES (?,?,?,?,?,?,?,?,?,?,?,?) ";
my $sth = $handl->prepare($sql) or die "Couldn't prep statement";
$sth->execute($company,$fname,$lname,$phn,$b2stre,$b2city,$b2stat,$b
+2zip,$s2stre,$s2city,$s2stat,$s2zip) or die "Couldn't add customer";
}
changes
- named the insert field names. Dont know if this matters to mysql, but Informix is picky that way
- added "or die" to $sth to catch those before the execute()
- shortened the varnames. not a nit, im just a lazy typist
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.