Hi,
I have a problem trying to trap a value which is returned by a stored SQL function (PL/SQL).
what I have is
dim SQL as string
SQL = "Declare Param VARCHAR(500);" & _
"BEGIN functionname(inVar,inVar2); End;"
myConn.execute SQL
now this works fine for a procedure, but I need to trap the value of Param so as to display.
A colleague suggested ADODB.Parameters but I can't seem to et it right.
Help...
I have a problem trying to trap a value which is returned by a stored SQL function (PL/SQL).
what I have is
dim SQL as string
SQL = "Declare Param VARCHAR(500);" & _
"BEGIN functionname(inVar,inVar2); End;"
myConn.execute SQL
now this works fine for a procedure, but I need to trap the value of Param so as to display.
A colleague suggested ADODB.Parameters but I can't seem to et it right.
Help...