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

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
bahry
Posts: 18
Joined: Wed 04 Jun 2008 13:12

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

Post by bahry » Thu 12 Jun 2008 10:33

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

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Fri 13 Jun 2008 08:53

There is no difference in these methods. Normally you should use Execute method. Two other methods are provided for compatibility with BDE.

Post Reply