Posts by RONDINELI MARTINS • 17 points
2 posts
-
-1
votes3
answers343
viewsA: Release object into a function - Memory Leak
Creating the query and connection with Owner(application) will not need to destroy to prevent leakage. Or... assign another Wner to be destroyed periodically.
-
1
votes0
answers214
viewsQ: How to run more than one query in Delphi Seatle in Firedac’s Fdquery using oracle?
Using Sqlserver it is possible to run the following two queries within the same firedac Fdquery FDQuery.FetchOptions.AutoClose := False; FDQuery.sql.add('select * from tabela1');…