×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
For those of you who don't know, Tim is the man!!!!
Brian May
Project Lead
Management Information Systems
Garan, Incorporated
Starkville, Mississippi
Young i Professionals
http://www.youngiprofessionals.com
"Shannon ODonnell" <sodonnell@xxxxxxxxxxxxxxxxxxxxxxxxx>
Sent by: web400-bounces@xxxxxxxxxxxx
11/24/2009 11:48 AM
Please respond to
Web Enabling the AS400 / iSeries <web400@xxxxxxxxxxxx>
To
"'Web Enabling the AS400 / iSeries'" <web400@xxxxxxxxxxxx>
cc
Subject
Re: [WEB400] Why does this SQL Insert Fail
Ah!!! Thanks Tim!
Adding that call to the Mysqli_error() did the trick!
The MySQL did not like my dashes in my table name!
Once I took them out and renamed the table, it worked fine.
Wow! I don't think I would have ever thought of that on my own.
Thanks again!
Shannon O'Donnell
You can get the error text by using the mysqli_error function.
So, something like:
$result = mysqli_query($cxn, $query)
or die("Unable to insert record: \n"."Transmittal Batch Num:
".$XmittalBatchNum . " -- Error was:" . mysqli_error($cxn));
http://us2.php.net/manual/en/mysqli.error.php
Tim Clark
As an Amazon Associate we earn from qualifying purchases.