Reports web Page

 

About Oracle


  Home

  About ME

  Summaries

  Key Definitions

  Links

  My Report

 

My Approach

His Approach is "Do it yourself approach."
This is like this: Put database at the heart of the Application. Then if it can be done with the database then do it.Reason is simple..

If you can build functionality in the database , you can deploy it anywhere. But when you implement outside of the database software you may have difficulty to find a place to deploy yopur application. This is same logic with people's using Java. Java has a Virtual Machine JVM and this virtual machine interpret Java Codes into byte codes. It is platform independent.Because it uses a virtual machine.

And it is the same logic database can also be behaved as a virtual machine. If you can do everything inside this machine you can deploy it anywhere. For these reasons using functinoality(features and functions of the database) of the database is so important. Also inside the Do it yourself Approach we can say that Try to do as simple as possible.

*If you can do it in sql do it.
*If not! Try PL/SQL.
*If it doesn't work, Try Java Stored Procudures.
*If it can't be done in Java, Use C external Pocudure.

This is like a making building. Try to make the base well. Base is database And your external codes will surround it.

.