Oracle Built−in Packages- P11 ppt

5 259 0
Oracle Built−in Packages- P11 ppt

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

Thông tin tài liệu

Copyright (c) 2000 O'Reilly & Associates. All rights reserved. [Appendix A] What's on the Companion Disk? 1.4.2 The DBMS_STANDARD Package 41 Chapter 2 42 2. Executing Dynamic SQL and PL/SQL Contents: Examples of Dynamic SQL Getting Started with DBMS_SQL The DBMS_SQL Interface Tips on Using Dynamic SQL DBMS_SQL Examples The DBMS_SQL package offers access to dynamic SQL and dynamic PL/SQL from within PL/SQL programs. "Dynamic" means that the SQL statements you execute with this package are not prewritten into your programs. They are, instead, constructed at runtime as character strings and then passed to the SQL engine for execution. The DBMS_SQL package allows you to perform actions that are otherwise impossible from within PL/SQL programs, including: Execute DDL statements DDL (Data Definition Language) statements, such as DROP TABLE or CREATE INDEX, are not legal in native PL/SQL. On the other hand, you can use DBMS_SQL to issue any DDL statement and create generic programs to perform such actions as dropping the specified table. Of course, your session will still need the appropriate database privileges to perform the requested actions. Build an ad−hoc query interface With DBMS_SQL, you no longer have to hard−code a SELECT statement for a query or a cursor. Instead, you can let a user specify different sort orders, conditions, and any other portion of a SELECT statement. Execute dynamically constructed PL/SQL programs In a database table you can store the names of procedures that perform certain calculations. Then build a front−end to that table, which allows a user to select the computation of interest, provide the inputs to that program, and then execute it. When other computations need to be offered to the user, you add a row in a table, instead of modifying one or more screens. DBMS_SQL is simultaneously one of the most complex, most useful, and most rewarding of the built−in packages. It may take some time for you to get comfortable with how to apply the technology. Once you are up and running, however, you will be amazed at the feats you will be able to perform! 2.1 Examples of Dynamic SQL Before explaining the details of DBMS_SQL, let's look at a few concrete examples. When you issue a SQL statement via DBMS_SQL, you will have to write much more code than you would by simply executing a native SQL statement, such as an implicit cursor created with a SELECT statement. To get a feel for the differences between these two approaches, consider the following code. This first procedure uses native SQL to give every employee in the specified department a raise: PROCEDURE giveraise (dept_in IN INTEGER, raise_in IN NUMBER) IS BEGIN UPDATE employee SET salary = salary + raise_in WHERE department_id = dept_in; END; 2. Executing Dynamic SQL and PL/SQL 43 The following procedure does the same thing, but with DBMS_SQL. Given the volume of code (and the subsequent overhead), you should only use DBMS_SQL when your SQL statement is truly dynamic or involves DDL. PROCEDURE giveraise (dept_in IN INTEGER, raise_in IN NUMBER) IS cursor_handle INTEGER; emps_updated INTEGER; BEGIN /* Create a cursor to use for the dynamic SQL */ cursor_handle := DBMS_SQL.OPEN_CURSOR; /* || Construct the SQL statement and parse it in Version 7 mode. || Notice that the statement includes two bind variables; these || are "placeholders" in the SQL statement. */ DBMS_SQL.PARSE (cursor_handle, 'UPDATE employee SET salary = salary + :raise_amount ' || 'WHERE department_id = :dept', DBMS_SQL.V7); /* Now I must supply values for the bind variables */ DBMS_SQL.BIND_VARIABLE (cursor_handle, 'raise_amount', raise_in); DBMS_SQL.BIND_VARIABLE (cursor_handle, 'dept', dept_in); /* Execute the SQL statement */ emps_updated := DBMS_SQL.EXECUTE (cursor_handle); /* Close the cursor */ DBMS_SQL.CLOSE_CURSOR (cursor_handle); EXCEPTION WHEN OTHERS THEN /* Clean up on failure too. */ DBMS_SQL.CLOSE_CURSOR (cursor_handle); END; Truly dynamic SQL occurs when you literally construct the SQL statement from runtime variable values. This is shown in the next example. The create_index procedure creates an index where the name of the index, the name of the table, and the column on which the index is to be created are passed as parameters to the procedure. This action would be impossible without DBMS_SQL for two reasons: this is a DDL call and the SQL statement isn't known until the procedure is called. /* Filename on companion disk: creind.sp */ CREATE OR REPLACE PROCEDURE create_index (index_in IN VARCHAR2, table_in IN VARCHAR2, column_in in VARCHAR2) IS cursor_handle INTEGER; feedback INTEGER; BEGIN /* Create a cursor to use for the dynamic SQL */ cursor_handle := DBMS_SQL.OPEN_CURSOR; /* Construct the SQL statement and parse it in native mode. */ DBMS_SQL.PARSE (cursor_handle, 'CREATE INDEX ' || index_in || ' ON ' || table_in || '( ' || column_in || ')', DBMS_SQL.NATIVE); /* You should always execute your DDL! */ feedback := DBMS_SQL.EXECUTE (cursor_handle); [Appendix A] What's on the Companion Disk? 2. Executing Dynamic SQL and PL/SQL 44 DBMS_SQL.CLOSE_CURSOR (cursor_handle); END create_index; / II. Application Development Packages 2.2 Getting Started with DBMS_SQL Copyright (c) 2000 O'Reilly & Associates. All rights reserved. [Appendix A] What's on the Companion Disk? 2. Executing Dynamic SQL and PL/SQL 45 . screens. DBMS_SQL is simultaneously one of the most complex, most useful, and most rewarding of the built−in packages. It may take some time for you to get comfortable with how to apply the technology.

Ngày đăng: 07/07/2014, 00:20

Mục lục

    A. What's on the Companion Disk?

    1.1 The Power of Built-in Packages

    1.1.1 A Kinder , More Sharing Oracle

    1.2 Built-in Packages Covered in This Book

    1.3.1 What Is a Package?

    1.3.2 Controlling Access with Packages

    1.3.3 Referencing Built-in Package Elements

    1.3.4 Exception Handling and Built-in Packages

    1.3.5 Encapsulating Access to the Built-in Packages

    1.3.6 Calling Built-in Packaged Code from Oracle Developer/2000 Release 1

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

  • Đang cập nhật ...

Tài liệu liên quan