True, but in interbase the syntax to run a stored procedure is:
Set rs = conn.Execute(" EXECUTE PROCEDURE
<stored procedure name and variavle list>")
conn.CommitTrans
how do I accomplish this for DB2
what might help, is if I knew what the syntax was to call or run a procedure from the DB2 Command Center.
My " EXECUTE PROCEDURE
<stored procedure name and variavle list>" worked in the Interbase ISQL window (App to run sql commands) as well as in my
VB code.