Introduction
This is an Oracle Data Layer class for connecting to Oracle Database from a .NET application
Oracle Data Provider for .NET (ODP.NET) is an implementation of a data providerfor the Oracle database.ODP.NET uses Oracle native APIs to offer fast and reliable access to Oracle data andfeatures from any .NET application. ODP.NET also uses and inherits classes andinterfaces available in the Microsoft .NET Framework Class Library.based on Oracle Data Provider.NET.
This C# class file contains two classes OracleDataAcess and OracleDataAccessParameterCache. We can easily manage the application Business layer by using this class. Here I give the sample code of the implementation of DataLayer in the Business Layer.
OracleParameter[] oraParam = new OracleParameter[2];
oraParam[0] = new OracleParameter("CustomerID", "100");
oraParam[1] = new OracleParameter("ResultCursor", OracleDbType.RefCursor);
oraParam[1].Direction = ParameterDirection.Output;
DataSet ObjDS = OracleDataAccess.ExecuteDataset(connectionString,
CommandType.StoredProcedure,
"Pr_GetCustomerDetails",oraParam );
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here