Re: Connecting to Oracle From VB6
mboizeau_at_free.fr
Date: 01/20/05
- Next message: Joel H: "strange problem with sql"
- Previous message: Glynn: "Re: Connecting to Oracle From VB6"
- In reply to: Glynn: "Re: Connecting to Oracle From VB6"
- Next in thread: Glynn: "Re: Connecting to Oracle From VB6"
- Reply: Glynn: "Re: Connecting to Oracle From VB6"
- Messages sorted by: [ date ] [ thread ]
Date: 20 Jan 2005 05:06:13 -0800
I don't understand your first question but yes, some providers have
troubles with huge amount of data.( i didn' encounter this problem
since oracle 7)
to access stored procedure, you should use a syntax like this one
(oCmd is an ADO Command object
and Oconn is an ADO Connection
oRS
Cur_result is your oracle Cursor return type. )
set oCmd.ActiveConnection = oConn;
sSQL = "{call " & sProgStockName & "({ResultSet 0, Cur_Result},'"
&arg1 & "','" & arg2"')}"
oCmd.CommandType = adCmdText
oCmd.CommandText = sSQL
oRS = oCmd.Execute ()
hope this helps
OracleVsMicrosoft
http://OracleVsMicrosoft.blogspot.com
- Next message: Joel H: "strange problem with sql"
- Previous message: Glynn: "Re: Connecting to Oracle From VB6"
- In reply to: Glynn: "Re: Connecting to Oracle From VB6"
- Next in thread: Glynn: "Re: Connecting to Oracle From VB6"
- Reply: Glynn: "Re: Connecting to Oracle From VB6"
- Messages sorted by: [ date ] [ thread ]