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:
|
2. | Insert data into TestTable as follows:
|
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.
|
8. | Switch to Form view, and double-click btnTest to add the click event handler. Add the following code to the handler:
|
9. | Save your project. |
10. | On the Debug menu, click Start to run your project. |
11. | Click the button to display the data. |