in reply to Re^5: DBI Problem
in thread SOLVED: DBI Problem

I see. That would do it, yup..

The problem I had before was a loop where I was doing a Create followed by an Insert. In the end, all the tables were created, and all the inserts were done except the LAST one. Re-ordering the loop to do Insert then Create "solved" that problem, or rather concealed the fact I wasn't committing properly.. lol.

I'm using mySQL, which a quick Google search reveals will not do rollbacks on DDL queries.

Thanks again!