The forum for ZeosLib 7.2 Report problems. Ask for help, post proposals for the new version and Zeoslib 7.2 features here. This is a forum that will be edited once the 7.2.x version goes into RC/stable!!
My personal intention for 7.2 is to speed up the internals as optimal a possible for all IDE's. Hope you can help?! Have fun with testing 7.2
TZSQLProcessor is meant to be more like an SQL script runner. I am pretty sure it isn't ment to return parameter values, so I doubt that your idea is expected to work. But I seem to rememebr that TZSQLProcessor has an Open-Method, so something like "select LAST_INSERT_ID()" as the last line in your script might work.
There is one more thing about your script: You use "START TRANSACTION" and "COMMIT" in your script. Don't do that. If things go wrong, it will fuck up the Zeos transaction management. Even if things are good in your script, it might fuck up the transaction management. Use ZConnection.StartTransaction and ZConnection.Commit instead.