PL/SQL Transactions

A PL/SQL transaction is a collection of operations or instructions which is executed as a whole atomic unit. A transaction can access and manipulate various data items. In a multi-user environment, every user is working with his own transaction independence, keeping the database in an inconsistent format. There are few properties which every stable database …

PL/SQL Transactions Read More »

PL/SQL Exception Handling

An exception is a condition which executes when an error occurs during execution of a PL/SQL program. PL/SQL provides a feature that lets the programmers to handle these exceptions in the exception block in a PL/SQL program. Exception block contains the methods (defined by the programmer) which can provide a particular action that needs to …

PL/SQL Exception Handling Read More »

5 Best Java Decompilers

Java decompiler is a tool which is designed in such a way that it is capable of converting .class file into Java source code. It will not give the exact java source code from which the .class file is generated but most of the code will be same. Decompiler is really helpful in case you …

5 Best Java Decompilers Read More »

PL/SQL Triggers

PL/SQL triggers are block structures or pre-defined programs, which may be in-built or even explicitly developed by the programmers for a particular task. Triggers are automatically executed when an event occurs which is well thought of by the programmer in advance. Triggers are associated with response-based events such as a Database Definition Language (DDL) statement …

PL/SQL Triggers Read More »

Anonymous Class in Java

Anonymous class in Java is a class without name. Its name is decided by the compiler. It enables us to declare and instantiate the class at the same time. It is like local class except that it does not have any name. We can use it only once. Anonymous class is also known as anonymous …

Anonymous Class in Java Read More »