ODP.NET Developer''''s Guide: Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET pot

326 626 1
ODP.NET Developer''''s Guide: Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET pot

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com ODP.NET Developer's Guide Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET A practical guide for developers working with the Oracle Data Provider for .NET and the Oracle Developer Tools for Visual Studio 2005 Jagadish Chatarji Pulakhandam Sunitha Paruchuri BIRMINGHAM - MUMBAI Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com ODP.NET Developer's Guide Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET Copyright © 2007 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, Packt Publishing, nor its dealers or distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: June 2007 Production Reference: 1150607 Published by Packt Publishing Ltd. 32 Lincoln Road Olton Birmingham, B27 6PA, UK. ISBN 978-1-847191-96-0 www.packtpub.com Cover Image by www.visionwt.com Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com Credits Authors Jagadish Chatarji Pulakhandam Sunitha Paruchuri Reviewer Steven M. Swafford Development Editor Douglas Paterson Assistant Development Editor Mithil Kulkarni Technical Editor Divya Menon Editorial Manager Dipali Chittar Project Manager Patricia Weir Project Coordinator Abhijeet Deobhakta Indexer Bhushan Pangaonkar Proofreader Chris Smith Production Coordinator Manjiri Nadkarni Cover Designer Manjiri Nadkarni Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com About the Authors Jagadish Chatarji Pulakhandam currently works as a .NET Architect and is responsible for analyzing/designing enterprise-level .NET applications. He has worked with Oracle since database version 7.1 and has been in the IT eld for about 12 years. Apart from Oracle and .NET, he has a good knowledge of developing corporate software and web applications, designing and implementing databases, designing and implementing data warehouses, and working with enterprise reporting software. During his free time, he contributes technical articles to OTN (Oracle Technology Network) and to the world of developer communities. I dedicate this book to my mother Dhana Laxmi. Without her patience, support and encouragement, I would never be to this stage. A special thanks to my uncle Ch. Jagadish Kumar, who is the basis for change in my life. And several thanks to all of my relatives and friends who encouraged and supported me at various milestones in my life. A nal thanks to every member of this book project from PACKT Publishing and a special thanks to Douglas Paterson, who offered me the rst chance of writing this rst book in my life. Sunitha Paruchuri has been programming with Microsoft tools and Oracle since 1997. She has developed numerous desktop, web, mobile, and distributed applications using Microsoft .NET and has good experience with other Microsoft products like Microsoft SQL Server, Microsoft Sharepoint Portal Server, etc. I dedicate this book to my parents Harnadha babu and Aruna Kumari and special thanks to my sister (Bhagya Laxmi), all of my relatives and friends who framed, encouraged and supported me in developing my career. Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com About the Reviewer Steven M. Swafford began developing software in 1995 while serving in the United States Air Force (USAF). Upon leaving the USAF he continued developing leading edge solutions in support of the America's war ghters as part of the original USAF enterprise portal development team. His roots are now in central Alabama where he works as a senior software engineer developing Java- and .NET-based applications and web services. Steven credits his wife Su Ok and daughter Sarah for supporting and inspiring his ongoing passion for software development and the resultant challenges of life near the bleeding edge. Steven was honored by the Microsoft Corporation in 2006 as a Microsoft ASP.NET Visual Developer MVP. He would like to thank Tim Stewart and Edward Habal who were his professional mentors and to this day remain close friends. Steven's personal website is located at http://www.radicaldevelopment.net and his blog is located at http://aspadvice.com/blogs/sswafford/. Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com Table of Contents Preface 1 Chapter 1: Introduction to ODP.NET 5 Introduction to ODP.NET 5 Why Use ODP.NET? 7 Oracle Database Access from .NET Applications 7 What Do We Require to Work with ODP.NET? 9 Introduction to Oracle Database Extensions for .NET 10 Oracle Database Extensions for .NET 10 How does .NET Work within Oracle Database? 10 Processing of .NET Stored Procedure with Oracle 11 Introduction to Oracle Developer Tools for Visual Studio 11 Summary 13 Chapter 2: Connecting to Oracle 15 Provider-Independent Model in ADO.NET 2.0 15 Listing All Installed .NET Data Providers 16 Enumerating all Oracle Data Sources Available 17 Connecting to Oracle Databases from .NET 19 Connecting Using .NET Data Provider Factory Classes 20 Connecting Using .NET Data Provider for OLEDB 22 Connecting Using .NET Data Provider for ODBC 23 Connecting using Microsoft's .NET Data Provider for Oracle 24 Connecting Using Oracle Data Provider for .NET (ODP.NET) 25 Connecting with Connection Pooling 27 Connecting with System-Level Privileges or DBA Privileges 28 Dynamic Connecting String Using OracleConnectionStringBuilder and app.config 29 Embedding a "tnsnames.ora" Entry-like Connection String 31 Connecting to a Default Oracle Database 32 Connecting Using Windows Authentication (Single Sign-On) 33 Summary 35 Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com Table of Contents [ ii ] Chapter 3: Retrieving Data from Oracle Using ODP.NET 37 Fundamental ODP.NET Classes to Retrieve Data 37 Retrieving Data Using OracleDataReader 39 Retrieving a Single Row of Information 39 Using "Using" for Simplicity 42 Retrieving Multiple Rows on to the Grid 43 Pulling Information Using Table Name 46 Retrieving Typed Data 47 Working with Data Tables and Data Sets 48 Retrieving Multiple Rows into a DataTable Using OracleDataAdapter 48 Filling a DataTable Using OracleDataReader 51 Retrieving a Single Row of Information Using OracleDataAdapter 52 Working with DataTableReader 54 Populating a Dataset with a Single Data Table 55 Populating a Dataset with Multiple Data Tables 56 Presenting Master-Detail Information Using a Dataset 58 More About the OracleCommand Object 61 Retrieving a Single Value from the Database 61 Handling Nulls when Executing with ExecuteScalar 62 Handling Nulls when Working with OracleDataReader 63 Working with Bind Variables together with OracleParameter 64 Working with OracleDataAdapter together with OracleCommand 66 Techniques to Improve Performance while Retrieving Data 67 Summary 69 Chapter 4: Manipulating Data in Oracle Using ODP.NET 71 Executing DML or DDL Statements Using OracleCommand 71 Using INSERT with OracleCommand 72 Using UPDATE with OracleCommand 73 Using DELETE with OracleCommand 75 Multiple Inserts Using Statement Caching 76 Multiple Inserts Using Array Binding 78 Creating an Oracle Table Dynamically Using ODP.NET 81 Updating Offline Data to the Database Using OracleDataAdapter 82 Working with OracleCommandBuilder and OracleDataAdapter 84 Working with Transactions Using ODP.NET 86 Handling Oracle Errors and Exceptions 88 Displaying a Single or First Error 88 Displaying Multiple Errors 89 Summary 92 Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com Table of Contents [ iii ] Chapter 5: Programming ODP.NET with PL/SQL 93 Working with Anonymous PL/SQL Blocks 93 Executing Anonymous PL/SQL Blocks 94 Passing Information to Anonymous PL/SQL Blocks 95 Retrieving Information from Anonymous Blocks 96 Working with PL/SQL Stored Procedures and Functions 98 Executing a PL/SQL Stored Procedure 98 Passing Parameter Values to a PL/SQL Stored Procedure 100 Using an Anonymous PL/SQL Block to Execute a PL/SQL Stored Procedure 102 Retrieving Output Parameters from a PL/SQL Stored Procedure 103 Passing IN and Getting OUT Simultaneously 105 Handling User-Defined Application Errors 107 Executing a PL/SQL User-Defined Function 109 PL/SQL Packages, Tables, and REF CURSOR 111 Executing Routines in a PL/SQL Package 111 Executing a Procedure in a PL/SQL Package 112 Executing a User-Defined Function in a PL/SQL Package 114 Passing Arrays to and Receiving Arrays from Oracle Database 116 Sending an Array to Oracle Database 116 Receiving an Array from Oracle Database 119 Working with REF CURSOR Using ODP.NET 122 Pulling from REF CURSOR Using OracleDataReader 122 Filling a Dataset from REF CURSOR 125 Working with Multiple Active Result Sets (MARS) 126 Summary 130 Chapter 6: Dealing with Large Objects (LOBs) 131 Working with BFILEs 131 Setting Up the Environment to Work with BFILEs 132 Adding a New Row Containing BFILE 133 Updating an Existing BFILE Row 135 Retrieving BFILE Information from a Database 136 Retrieving Properties of a BFILE 138 Working with CLOBs 140 Inserting Huge Text Information into Oracle Database 140 Updating CLOB Information Using OracleClob 142 Retrieving CLOB Information from Oracle Database 143 Reading a Text File and Uploading as CLOB 144 Working with BLOBs 147 Setting Up the Environment to Work with BLOBs 148 Uploading Images to Oracle Database Using BLOB 150 Simpo PDF Merge and Split Unregistered Version - http://www.simpopdf.com [...]... us understand their nature from the following figure: Any NET Client VB.NET C# C+ +.NET ASP NET … ADO.NET ODBC.NET OLEDB.NET Oracle ODBC Oracle OLEDB Microsoft's NET data provider for Oracle Oracle's Data Provider (ODP NET) Oracle Client Oracle database Microsoft's NET data providers for ODBC and OLEDB are not intentionally developed exclusively for Oracle database Those are generic NET data providers... mappings are handled seamlessly by the PL/SQL wrapper Introduction to Oracle Developer Tools for Visual Studio Oracle Developer Tools for Visual Studio is an add-in for Microsoft Visual Studio that tightly integrates the Visual Studio environment with Oracle database You will be able to manipulate Oracle databases from within Visual Studio and without leaving Visual Studio [ 11 ] Simpo PDF Merge and Split... databases from within Visual Studio using Oracle Developer Tools for Visual Studio What This Book Covers Chapter 1 introduces the concept of Oracle Database Extensions for NET and provides information about Oracle Developer Tools for Visual Studio Chapter 2 introduces the Provider- Independent Model in ADO.NET 2.0, and shows how to connect to Oracle databases from NET, working with NET data providers, connection... commitment for Microsoft NET by adding� Oracle database extensions for NET and Oracle Developer Tools for Visual Studio The upcoming sections will give you a solid understanding of ODP.NET along with its features Why Use ODP.NET? Can't we access Oracle without ODP.NET? Yes, we can It is not compulsory for you to work with ODP.NET As mentioned in the following section, we can still connect to and access Oracle. .. including C# and VB.NET This book will show you how ODP.NET is the best choice for connecting NET applications with Oracle database We will be dealing with the concepts of ODP.NET and its requirements, working with SQL, PL/SQL, and XML DB using ODP.NET, looking at application development with ODP.NET: Web Applications, Web Services, and Mobile Applications We will also learn to manipulate Oracle databases... system privileged connection, and single sign-on etc Chapter 3 shows you several methods to retrieve data from an Oracle database You will work with the core ODP.NET classes like OracleCommand, OracleDataReader, OracleDataAdapter, OracleParameter, and ADO.NET classes like DataSet, DataTable, and DataRow etc Chapter 4 is about inserting, updating, and deleting data in the database You will also learn... using Microsoft Visual Studio NET 2003 /2005 Obviously, we use Oracle Data Provider for NET (ODP.NET) in NET stored procedures and functions for Oracle data access After building NET procedures and functions into a NET assembly, developers deploy them in Oracle database, using the Oracle Deployment Wizard for NET, a component of the Oracle Developer Tools for Visual Studio NET Once the NET stored procedure... NET data providers, it has also opened its doors (specification) to the public and is encouraging other database companies to develop their own NET data providers Microsoft made the data access model consistent among all of the NET data providers and thus any NET data provider should definitely conform to the standards and architecture of ADO.NET One of those is Oracle' s ODP.NET, a NET data provider. .. Introduction to ODP.NET At the time of this writing, Oracle Developer Tools for Visual Studio is available for both Microsoft Visual Studio. NET 2003 and Microsoft Visual Studio. NET 2005 versions If you have both versions on your computer, you can install for both of those IDEs by installing Oracle Developer Tools for Visual Studio 2005 Once you install Oracle Developer Tools for Visual Studio, Oracle Explorer... from Oracle 10g version 2 (on Windows) onwards or Oracle 10g Express Edition (or Oracle 10g XE) How does NET Work within Oracle Database? How come Oracle understands NET? Oracle database doesn't need to understand NET at all It simply hosts the Microsoft NET Common Language Runtime (CLR) in an external process, outside of the Oracle database process, but on the same computer The integration of Oracle database . Merge and Split Unregistered Version - http://www.simpopdf.com ODP. NET Developer's Guide Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET A. Merge and Split Unregistered Version - http://www.simpopdf.com ODP. NET Developer's Guide Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET Copyright. 5 Introduction to ODP. NET 5 Why Use ODP. NET? 7 Oracle Database Access from .NET Applications 7 What Do We Require to Work with ODP. NET? 9 Introduction to Oracle Database Extensions for .NET 10 Oracle Database

Ngày đăng: 27/06/2014, 06:20

Từ khóa liên quan

Tài liệu cùng người dùng

Tài liệu liên quan