Autonomous Transactions : Oracle
Autonomous transactions allow you to leave the context of the calling transaction, perform an independant transaction, and return to the calling transaction without affecting it\'s state. The autonomous transaction has no link to the calling transaction, so only commited data can be shared by both transactions.
created by tom on 2008-05-05 21:55:28
|
|
|
log4j
Log4j is a Java-based logging utility. It was originally written by Ceki Gülcü and is now a project of the Apache Software Foundation. It is used primarily as a debugging tool.
created by syam1224 on 2008-03-27 09:42:33
|
|
|
JavaServer Faces FAQ
FREQUENTLY ASKED QUESTIONS about JavaServer Faces Technology
created by syam1224 on 2008-03-27 04:52:09
|
|
|
Observer Design Pattern
The observer pattern (sometimes known as publish/subscribe) is a design pattern used in computer programming to observe the state of an object in a program. It is related to the principle of implicit invocation.
created by syam1224 on 2008-05-08 20:47:48
|
|
|
PHP Design Pattern Articles
List of articles explaining how Design patterns can be used in PHP Programming. PHP is a widely-used general-purpose scripting language that is especially suited for web development and can be embedded into HTML.
created by syam1224 on 2008-05-11 21:31:24
|
|
|
Post-order Tree Traversal Algorithm
To traverse a non-empty binary tree in postorder, perform the following operations recursively at each node, starting with the root node:
1. Traverse the left subtree.
2. Traverse the right subtree.
3. Visit the node.
created by syam1224 on 2008-05-11 05:10:40
|
|
|