“Error parsing complete XML return string”, a Ghetto Hack for QODBC & ColdFusion
Thursday, July 19th, 2007I am testing the limits of QuickBooks, QODBC, & ColdFusion, so I am doing some bulk imports to see what (if anything) breaks or has poor performance.
In this particular case, I am trying to add 100000 customers to the database
<cfloop index=”i” from=”1″ to=”100000″>
<cfquery datasource=”qbs” name=”ds” >
INSERT INTO Customer ( Name)
VALUES (’#CreateUUID()#’)
</cfquery>
</cfloop>
When running the script, it [...]