Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

Object Oriented Automatic Method Generation

Oracle Database Tips by Donald Burleson

In most object-oriented and object/relational databases, the basic methods for all objects are created automatically at the time that the object class is defined.  These basic methods are used when objects are created, deleted, updated and displayed, and would correspond to the INSERT, DELETE and UPDATE SQL verbs.  It is important to recognize that methods exist in several forms within the database engine.

1. Standalone methods - These methods are not associated with a database class.

2. Base class methods

3. Aggregate class methods

However, more complex methods can be coupled to their target objects.  For example, an order_form object might contain a method called check_payment_history which performs detailed checks into the prior payment history for the customer who is placing the order.

Now, let's take a look at our analysis of the methods that might be associated with these objects.  Whenever a method of the same name appears in more than one class definition, the database will look first at the object, and traverse up the class hierarchy at runtime, looking for the method.

Methods for student: 

Display_student();
Compute_tuition();
enroll_student();

Methods for graduate_student;

assign_mentor();
computer_tuition();
update_thesis_status();

Methods for non_resident_students;

Compute_tuition();
record_transfer_statistics();

Methods for foreign_students;

compute_tuition();

Here we see that some methods that are unique to the sub-class appear only within the sub-class definition.  For example, update_thesis_status would not have any meaning to an undergraduate student.

This should now provide a general method for the mapping of processes to database objects.  As we have repeatedly stated, it is critical to the design of an object database that careful planning of the methods take place before the database schema is defined.

Summary

It cannot be overemphasized that it is critical to the design of a database object system that careful attention be given to the placement of methods.  The concept of overloading can be very powerful, since new code can be introduced into the system with absolute certainty that no unintended side-effects will be introduced.  This is because the new method will only be known to objects within that class of sub-classes.  Objects that belong to other class will never know that the new method exists.

Now that we understand the issues relating to the placement of methods, let's take a look at how the object/relational model allows for the definition of aggregate objects, that is, objects that are composed of other objects.

 


 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.