TOracleScript and a Threaded Query?

foldenm

Member
Hi. I'm currently using a TOracleScript
component to run scripts invisibly, and
capturing the output via the "OnOutput"
events. Everything works great so far.
Since I have access to the Query component
of the TOracleScript, can I turn this into
a threaded query, and catch the output via
the Query "OnThread" events. Will this cause
problems internally to the TOracleScript
component???
Thanks in advance... mike
 
This will indeed cause problems. If you want the execution of the TOracleScript to occur in a background thread, create a TThread descendant and explicitly do so.

------------------
Marco Kalter
Allround Automations
 
Back
Top