Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

executing an oracle procedure ! HOW?

Status
Not open for further replies.

kiramoto

Programmer
May 13, 2002
9
BR

Hi everybody,
I wanna know how to execute an oracle procedure named "imp_estados" in my code
I tried this:

dim sql as string
dim conn as adodb.connection
dim aux as sring

aux = "provider = ora...."
conn.open aux

sql = "execute imp_estados;"
conn.execute(sql)


It doesn't work.
Anyone could help me?
thanks in advance,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top