Full Backup when the database is open
Recent Articles
-
What is synchronization and why is it important?
With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchronization, it is possible for one thread to modify a shared object while another thread is in the process of using or updating that object’s value. This often leads to significant errors. Read More...
-
What is the output from System.out.println(“Hello”+null);?
Hellonull Read More...
-
Why do threads block on I/O?
Threads block on I/O (that is enters the waiting state) so that other threads may execute while the I/O Operation is performed. Read More...
-
Which containers use a border Layout as their default layout?
The window, Frame and Dialog classes use a border layout as their default layout Read More...
-
What is a transient variable?
A transient variable is a variable that may not be serialized. If you don’t want some field to be serialized, you can mark that field transient or static. Read More...
-
Search
-
Categories
Archives
- September 2010 (8)
- August 2010 (23)
- July 2010 (18)
- June 2010 (28)
- May 2010 (29)
- April 2010 (26)
- August 2009 (7)
- July 2009 (62)
- June 2009 (752)
- May 2009 (776)
-