filmov
tv
59/125 Oracle PLSQL: Working with Packages / Array Example

Показать описание
Learn Oracle PLSQL
EXAM 1Z0-144
--------------------------------------------
--using pl/sql tables in packages
create or replace package emp_pkg
is
type emp_table_type is table of employees%rowtype
index by binary_integer;
procedure get_employees(p_emps out emp_table_type );
end;
-------------------------------
create or replace package body emp_pkg
is
procedure get_employees(p_emps out emp_table_type )
is
begin
for emp_record in (select * from employees)
loop
end loop;
end;
end;
-----------------------------------
declare
begin
end;
EXAM 1Z0-144
--------------------------------------------
--using pl/sql tables in packages
create or replace package emp_pkg
is
type emp_table_type is table of employees%rowtype
index by binary_integer;
procedure get_employees(p_emps out emp_table_type );
end;
-------------------------------
create or replace package body emp_pkg
is
procedure get_employees(p_emps out emp_table_type )
is
begin
for emp_record in (select * from employees)
loop
end loop;
end;
end;
-----------------------------------
declare
begin
end;
59/125 Oracle PLSQL: Working with Packages / Array Example
58/125 Oracle PLSQL: Working with Packages / Persistent Cursor
60/125 Oracle PLSQL: Supplied Packages / Introduction
54/125 Oracle PLSQL: Working with Packages / Overloading
55/125 Oracle PLSQL: Working with Packages / Overloading Standard Program
57/125 Oracle PLSQL: Working with Packages / Persistent State
56/125 Oracle PLSQL: Working with Packages / Forward Declaration
61/125 Oracle PLSQL: Supplied Packages / DBMS_OUTPUT
67/125 Oracle PLSQL: Dynamic SQL / Introduction
118/125 Oracle PLSQL: Managing Dependencies / 3 cases
64/125 Oracle PLSQL: Supplied Packages /UTL_FILE 3
72/125 Oracle PLSQL: Dynamic SQL / More Examples
62/125 Oracle PLSQL: Supplied Packages / UTL_FILE 1
63/125 Oracle PLSQL: Supplied Packages / UTL_FILE 2
69/125 Oracle PLSQL: Dynamic SQL / Execute Immediate 2
33/125 Oracle PLSQL: Using explicit cursors 4
COL9: Working with String-indexed Associative Arrays
30/125 Oracle PLSQL: Using explicit cursors 1
PL/SQL tutorial: PL/SQL Record in oracle database part-1
PL/SQL tutorial: PL/SQL Collection Associative Array in Oracle Database Part-2
PL/SQL tutorial: Using New & Old Qualifiers in Triggers
34/125 Oracle PLSQL: Using explicit cursors 5
UTL FILE IN BULT EXCEPTIONS
Package (Oracle PL/SQL)
Комментарии