Query Not Working
The following query keeps aborting in Coldfusion:
| SELECT ID, BusinessName, dba, BusinessPhone, FEIN, CSLB, WCRenewalDate, WCCarrier, CACarrier, CANumber, CARenewalDate, GeneralLiabilityCarrier, HealthInsuranceCarrier, HealthInsuranceRenewal, GeneralLiabilityRenewal | |
| FROM PProspect | |
| ORDER BY BusinessName |
The query runs just fine if I use it within the phpMyadmin mySQL interface, but when I try to use it within a CFQUERY tag, it fails every time. I tried all of the field names within a CFQUERY individually, and they all work except for the HealthInsuranceRenewal and GeneralLiabilityRenewal fields. The other two date fields (WCRenewalDate and CARenewalDate) work just fine. All of the date fields are configured the same way in mySQL -- type = date and default = NULL.
Any idea why this is happening?
