
Search In
Transactions are very important part of MySql and for handling the transactions the Transaction Control Language (TCL) is used. Transactions are basically used to handle all the changes made in the database.
Rolling back a transaction means storing t
SVG stands for Scalable Vector Graphics it is an XML based image format which is basically used to define 2D vector graphics for the web. A vector image can be resized to any extent without destroying the image quality.
SVG images are represented i
1) Final:
Final is a keyword. It is used to store constant values in variable. The value can't be changed later on.
The class which is declared as final cannot be inherited.
The method which is declared as final cannot be overridden.
Example:
c
final, finally and finalize in Java
final:
The meaning of final keyword varies with it's usage with class,methods and variables.
Class: When final keyword is placed before class keyword then that class cannot be inherited i.e final class cannot be
Android provide many ways to store or save data of an application, one of the method is using Shared Preferences. Shared Preferences are used to store and retrieve primitive data information(such as int, boolean, and String). The data is stored in a
StringBuffer:
As we know in Java String is immutable means we cannot reassign a new value to the same string object. That's why in Java to provide mutability we use either StringBuffer or StringBuilder. StringBuffer is a class in Java which provide
To redirect System.out.println() output to a file in Java instead to console?
The internal working of System.out.println():
System: java.lang package contains the class System with it's defination.
out: out is a public and static variable of Sys
Hi,
If you are facing "unable to write 'cake_dev_en-us'" Warning,Then I Wrote This Blog For You.
if you have Already unzip CakePHP Framework in your Directory and set Database setting.
Now Follow These Steps to set Permission for TMP Directory.
1
Promises - AngularJS's promise provides a built-in service $q. It provide a way to execute asynchronous call in series by registering it with a promise object.
Let us now elaborate promise and deferred.
Deferred - It represent the result/o
Representational State Transfer or Rest services in WCF Windows Communication Foundation is the way of making services by which it is accessed by any platform
We make Rest services because it has a feature of getting communicated with any pl
