You can access this object identifier using the REF() function and store the returned objectifier in a REF column. : Object Reference Column « Object Oriented « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » Object Oriented » Object Reference Column 
32. 8. 4. You can access this object identifier using the REF() function and store the returned objectifier in a REF column.
SQL>
SQL> CREATE or Replace TYPE AddressType AS OBJECT (
  2    street VARCHAR2(15),
  3    city   VARCHAR2(15),
  4    state  CHAR(2),
  5    zip    VARCHAR2(5)
  6  )
  7  /

Type created.

SQL>
SQL> CREATE Or Replace TYPE PersonType AS OBJECT (
  2    id         NUMBER,
  3    first_name VARCHAR2(10),
  4    last_name  VARCHAR2(10),
  5    dob        DATE,
  6    phone      VARCHAR2(12),
  7    address    AddressType
  8  )
  9  /

Type created.

SQL>
SQL> CREATE TABLE object_customers OF PersonType
  2  /

Table created.

SQL>
SQL> INSERT INTO object_customers VALUES (
  2    PersonType(1'John', 'White', '04-FEB-1945', '800-555-5555',
  3      AddressType('2 Ave', 'town', 'AA', '12345')
  4    )
  5  );

row created.

SQL>
SQL> INSERT INTO object_customers (
  2    id, first_name, last_name, dob, phone,
  3    address
  4  VALUES (
  5    2'James', 'Green', '05-FEB-1968', '800-555-4444',
  6    AddressType('3 Ave', 'City', 'CA', '12345')
  7  );

row created.

SQL>
SQL> CREATE Or Replace TYPE ProductType AS OBJECT (
  2    id          NUMBER,
  3    name        VARCHAR2(15),
  4    description VARCHAR2(22),
  5    price       NUMBER(52),
  6    days_valid  NUMBER
  7  )
  8  /

Type created.

SQL>
SQL> CREATE TABLE object_products OF ProductType
  2  /

Table created.

SQL>
SQL> INSERT INTO object_products (
  2    id, name, description, price, days_valid
  3  VALUES (
  4    1'AAA', 'BBB', 2.995
  5  );

row created.

SQL>
SQL> CREATE TABLE purchases (
  2    id       NUMBER PRIMARY KEY,
  3    customer REF PersonType  SCOPE IS object_customers,
  4    product  REF ProductType SCOPE IS object_products
  5  );

Table created.

SQL>
SQL> INSERT INTO purchases (
  2    id,
  3    customer,
  4    product
  5  VALUES (
  6    1,
  7    (SELECT REF(ocFROM object_customers oc WHERE oc.id = 1),
  8    (SELECT REF(opFROM object_products  op WHERE op.id = 1)
  9  );

row created.

SQL> select from purchases;

 ID    CUSTOMER                                                                   PRODUCT
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  1   00002202089E1785E0E6A5410BA917BACC9F93530B35C60A986EAC46F580144901E1EC0F94  00002202088CDC8C88E9AB403D85085FAE2649DF6E02D3BDE222D24D1E85421901D500B4A2


SQL>
SQL> drop table purchases;

Table dropped.

SQL>
SQL> drop table object_products;

Table dropped.

SQL>
SQL> drop table object_customers;

Table dropped.

SQL> drop type persontype;

Type dropped.

SQL> drop type addresstype;

Type dropped.

SQL>
32. 8. Object Reference Column
32. 8. 1. Object References and Object Identifiers
32. 8. 2. CREATE a Table that References Our Row Objects
32. 8. 3. Inserting a Row into the Object Reference table
32. 8. 4. You can access this object identifier using the REF() function and store the returned objectifier in a REF column.
32. 8. 5. Selecting a Row from the Object reference table
32. 8. 6. You can access the rows in the object tables that are pointed to by REF column values using t REF() function; this function accepts a REF column as a parameter.
32. 8. 7. Updating a Row in the object reference table
32. 8. 8. Reference column
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.