Click here to Skip to main content
15,885,546 members
Articles / Web Development / ASP.NET
Article

Oracle Data Access Block for .NET

Rate me:
Please Sign up or sign in to vote.
3.50/5 (17 votes)
7 May 2006 73K   3K   32   13
This is an Oracle Data Layer class for connecting to Oracle Database from a .net application based on Oracle Data Provider.NET

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.

C#
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 );

License

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


Written By
Team Leader
India India
I am Rajesh Babu, currently working for Nous Infosystems, Bangalore. I have 6 plus years experience in Microsoft Technologies.

Comments and Discussions

 
GeneralExcellent Pin
Member 372533015-Jan-07 21:27
Member 372533015-Jan-07 21:27 
QuestionODP Pin
hedidin15-Jul-06 4:50
professionalhedidin15-Jul-06 4:50 
QuestionWhere's The Beef? Pin
Chris Meech8-May-06 2:23
Chris Meech8-May-06 2:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.