I have a MySQL database, with a column that is date type DATETIME.
MySQL database
DATETIME
I am getting a string value for a date / time from an external applicat
Use MySQL's STR_TO_DATE() function to parse the string that you're attempting to insert:
INSERT INTO tblInquiry (fldInquiryReceivedDateTime) VALUES (STR_TO_DATE('5/15/2012 8:06:26 AM', '%c/%e/%Y %r'))