Page 1 of 1

What is The Diff between (ExecSQL, Execute, ExecProc;)

Posted: Thu 12 Jun 2008 10:33
by bahry
Hi,
What is the Difference to Execute a Stored Procedure
(
OraStoredProc.ExecSQL
OR
OraStoredProc.Execute
OR
OraStoredProc.ExecProc
)
which Method do I have to use if I Create the Stored Procedure at RunTime

Regards

Posted: Fri 13 Jun 2008 08:53
by Plash
There is no difference in these methods. Normally you should use Execute method. Two other methods are provided for compatibility with BDE.