How to call Oracle stored proc from vb.net app?
I know it is different way to call Oracle stored procedure when compared to SQL server stored proc.
I am using currently the following format to call sql proc (BTW I am using Microsoft DATA access block )
"calling sqlserver stored proc"
helper = GetAdoHelper()
sConn = GetConnectionString()
drsql = helper.ExecuteReader(sConn, CommandType.StoredProcedure, "GetCustomers")
"How to call Oracle stored Proc"??
any help is greatly appreciated
connecting to oracle is also possible thru data access block
http://www.gotdotnet.com/Community/W...c-aaeb21d1f431
but, I don't know how to use it to use stored procs in oracle .
thanks
don't we have to something related to the parameters?
I guess your code works if we are calling sqlserver but not oracle.
nath