News

Tuesday, July 3, 2007

How To Access an Oracle Database by Using the OLE DB .NET Data Provider and Visual C# .NET

SUMMARY

This article demonstrates how to use the ADO.NET OLE DB managed provider to access an Oracle database.
 

Requirements

The following list outlines the recommended hardware, software, network infrastructure, and service packs that you need:
Microsoft Windows 2000 Professional, Windows 2000 Server, Windows 2000 Advanced Server, or Windows NT 4.0 Server
Oracle Client tools (installed on the computer)
Microsoft Visual Studio .NET
This article assumes that you are familiar with the following topics:
Visual Studio .NET
ADO.NET fundamentals and syntax
Oracle connectivity
 

Steps to Access an Oracle Database

1. In Oracle, create a table named TestTable as follows:
Create Table TestTable (c1 char(5)); 					
2. Insert data into TestTable as follows:
Insert into TestTable c1 values('Test1'); Insert into TestTable c1 values('Test2'); Insert into TestTable c1 values('Test3'); 					
3. Start Visual Studio .NET.
4. Create a new Windows Application project in Visual C# .NET.
5. Make sure that your project contains a reference to the System.Data namespace, and add a reference to this namespace if it does not.
6. Drag a Button control to Form1, and change its Name property to btnTest.
7. Use the using statement on the System, System.Data, and System.Data.OleDb namespaces so that you are not required to qualify declarations in those namespaces later in your code.
using System; using System.Data; using System.Data.OleDb; 					
8. Switch to Form view, and double-click btnTest to add the click event handler. Add the following code to the handler:
String sConnectionString =     "Provider=MSDAORA.1;User ID=myUID;password=myPWD;      Data Source=myOracleServer;Persist Security Info=False"; String mySelectQuery =     "SELECT * FROM TestTable where c1 LIKE ?";  OleDbConnection myConnection = new OleDbConnection(sConnectionString); OleDbCommand myCommand = new OleDbCommand(mySelectQuery, myConnection);  myCommand.Parameters.Add("@p1", OleDbType.Char, 5).Value = "Test%"; myConnection.Open(); OleDbDataReader myReader = myCommand.ExecuteReader(); int RecordCount=0; try {     while (myReader.Read())     {         RecordCount = RecordCount + 1; 	MessageBox.Show(myReader.GetString(0).ToString());     }     if (RecordCount == 0)     { 	MessageBox.Show("No data returned");     }     else     { 	MessageBox.Show("Number of records returned: " + RecordCount);     } } catch (Exception ex) {     MessageBox.Show(ex.ToString()); } finally {     myReader.Close();     myConnection.Close(); } 					
9. Save your project.
10. On the Debug menu, click Start to run your project.
11. Click the button to display the data.

1 comment:

Anonymous said...

Hello. This post is likeable, and your blog is very interesting, congratulations :-). I will add in my blogroll =). If possible gives a last there on my blog, it is about the Wireless, I hope you enjoy. The address is http://wireless-brasil.blogspot.com. A hug.