mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-03 11:12:13 +00:00
14202f58e9
- Performance improved for stored procedures. In CegoFunction, the procedure handle is now stored after first stored procedure call ( instead of freeing the handle and requesting it again with the next call ) So for subsequent function calls, the handle is already available, which improves stored procedure execution time significantly. As a consequene, code has been added for cleanUp the handle at the end of the query ( object is also in use during the whole query with CegoDatabaseManager::useObject and must be unused by cleanup ) - Patch added in CegoFunction to avoid useObject leaks