HOWTO: Retrieve Typical Resultsets From Oracle Stored ProceduresLast reviewed: March 3, 1998Article ID: Q174981 |
The information in this article applies to:
SUMMARYThis article shows how to create an RDO project that will return a typical Resultset from an Oracle stored procedure. This article builds on the concepts covered in the Microsoft Knowledge Base article: Q174679 - HOWTO: Retrieve Resultsets from Oracle Stored Procedures.
MORE INFORMATIONKnowledge Base article Q174679 gives an in-depth example of all the possible ways to return a Resultset from a stored procedure. The example in this article is a simplified version. Please refer to Q174679 if you want more information about the process. NOTE: The Resultsets created by the Microsoft ODBC Driver for Oracle v2.0 using Oracle stored procedures are READ ONLY and STATIC. To retrieve a Resultset requires that an Oracle Package be created. The sample project in this article was created in Visual Basic 5.0 and uses RDO to access and manipulate the Resultsets created by the Microsoft ODBC Driver for Oracle v2.0. You will need to have this driver to use the Resultsets - from-stored-procedures functionality discussed in this article and KB Q174679. (currently, it is the only driver on the market that can return a Resultset from a stored procedure). If you want more information about using RDO 2.0 with Oracle, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q167225 TITLE : HOWTO: Access an Oracle Database Using RDOThis article is in two parts. The first part is a step-by-step procedure for creating the project. The second is a detailed discussion about the interesting parts of the project.
Step-by-Step Example
QSQL = "{call packperson.allperson({resultset 9, ssn, fname, "_ & "lname})}"This query is executing the stored procedure "allperson," which is in the package "packperson" (referenced as "packperson.allperson"). There are no input parameters and the procedure is returning three arrays (ssn, fname, and lname), each with 9 or fewer records. As stated in Q174679, you must specify the maximum number of rows you will be returning. Please refer to the Microsoft ODBC Driver for Oracle Help File and Q174679 for more information on this issue. When you click on the "Get One" button, you see an input box that prompts you for an SSN. Once you input a valid SSN and click OK, this query is executed:
QSQL = "{call packperson.oneperson(?,{resultset 2, ssn, fname, "_ & "lname})}"The stored procedure, packperson.oneperson, uses a single input parameter as the selection criteria for the Resultset it creates. Just like packperson.allperson, the Resultset is constructed using the table types defined in packperson. (See Q174679 for more information.) NOTE: You can only define input parameters for Oracle stored procedures that return a Resultset. You cannot define output parameters for these stored procedures. These two stored procedures cover the basic uses of stored procedures that return Resultsets. The first one gives you a predefined set of records (such as everyone) and the second will gives you a set of records (or just one record) based on one or more input parameters. Once you have these Resultsets, you can do inserts, updates, and deletes either through stored procedures or SQL that you create on the client.
REFERENCESMicrosoft ODBC Driver for Oracle Help File Oracle PL/SQL Programming by Steven Feuerstein Hitchhiker's Guide to Visual Basic & SQL Server by William Vaughn For additional information, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q174679 TITLE : HOWTO: Retrieve Resultsets from Oracle Stored Procedures ARTICLE-ID: Q167225 TITLE : HOWTO: Access an Oracle Database Using RDO ARTICLE-ID: Q175018 TITLE : HOWTO: Acquire and Install the Microsoft Oracle ODBC Driver v2.0 |
Additional query words: Oracle stored procedures rdo msorcl32.dll
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |