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