Use self to reference member variable in constructor : Object « Object Oriented Database « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
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 Tutorial
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 » Object Oriented Database » Object 
Use self to reference member variable in constructor
    


SQL> CREATE OR REPLACE TYPE myType
  2  AUTHID CURRENT_USER IS OBJECT
  3  my_number NUMBER
  4  , my_name   VARCHAR2(20 CHAR)
  5  , CONSTRUCTOR FUNCTION myType RETURN SELF AS RESULT
  6  , CONSTRUCTOR FUNCTION myType (my_number NUMBER, my_name   VARCHAR2 )RETURN SELF AS RESULT
  7  , MEMBER PROCEDURE print_instance_variable
  8  , ORDER MEMBER FUNCTION equalsmy_class myType RETURN NUMBER )
  9  INSTANTIABLE NOT FINAL;
 10  /

Type created.

SQL>
SQL> SHOW ERRORS
No errors.
SQL>
SQL> 
SQL> CREATE OR REPLACE TYPE BODY myType AS
  2
  3    
  4    CONSTRUCTOR FUNCTION myType
  5    RETURN SELF AS RESULT IS
  6
  7      
  8      my_instance_number NUMBER := 0;
  9      my_instance_name   VARCHAR2(20 CHAR:= '';
 10
 11    BEGIN
 12
 13      
 14      SELF.my_number := my_instance_number;
 15      SELF.my_name := my_instance_name;
 16
 17      
 18      RETURN;
 19
 20    END;
 21
 22    
 23    CONSTRUCTOR FUNCTION myTypemy_number NUMBER , my_name   VARCHAR2 )
 24    RETURN SELF AS RESULT IS
 25
 26    BEGIN
 27
 28      
 29      SELF.my_number := my_number;
 30      SELF.my_name := my_name;
 31
 32      
 33      RETURN;
 34
 35    END;
 36
 37    
 38    MEMBER PROCEDURE print_instance_variable IS
 39
 40    BEGIN
 41      
 42      DBMS_OUTPUT.PUT_LINE('Instance Number ['||SELF.my_number||']');
 43      DBMS_OUTPUT.PUT_LINE('Instance Name   ['||SELF.my_name||']');
 44
 45    END;
 46
 47    
 48    ORDER MEMBER FUNCTION equalsmy_class myType )
 49    RETURN NUMBER IS
 50
 51      
 52      false_value NUMBER := 0;
 53      true_value  NUMBER := 1;
 54
 55    BEGIN
 56
 57      
 58      IF SELF.my_number = my_class.my_number AND
 59         SELF.my_name = my_class.my_name     THEN
 60
 61        
 62        RETURN true_value;
 63
 64      ELSE
 65
 66        
 67        RETURN false_value;
 68
 69      END IF;
 70
 71    END;
 72
 73  END;
 74  /

Type body created.

SQL>
SQL> SHOW ERRORS
No errors.
SQL>
SQL>

   
    
    
    
  
Related examples in the same category
1. Create Object
2. CREATE OR REPLACE TYPE
3. Create a stored type which is visible to SQL and PL/SQL.
4. reference user-defined data type in another block
5. Student type
6. Point type
7. Use user-defined type as parameter
8. This script demonstrates complex objects
9. Name type
10. Behavior of dependent objects.
11. Build data type with another user type
12. Create the object and collection types
13. Create type and use it in inner query
14. Create types and then use it in pl/sql block
15. Combine user-defined type to create new type
16. PriceType becomes the datatype of the price attribute in the ProductType object type
17. One to list using object references
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.