tag

home / developersection / tag

Using Cursor in CallableStatement
java 07-Nov-2015
Using Cursor in CallableStatement

A cursor defines the runtime execution environment for query when the result of the query execution can be captured.

Callable Statement in Java
java 06-Nov-2015
Callable Statement in Java

In Java, CallableStatement is used to call the stored procedures and functions by using an object of the CallableStatement Interface.

Synchronization in Java
java 04-Nov-2015
Synchronization in Java

Synchronization is required when more than one thread sharing the same resources .

Quick overview of “public static void main(String args[])”
java 03-Nov-2015
Quick overview of “public static void main(String args[])”

Variation of "public static void main(String args[])" and different altering cases and its corresponding outputs and errors.

Why String is Final in Java
java 03-Nov-2015
Why String is Final in Java

As I said, there could be many possible answer of this question, and only designer of String class can answer it with confidence

Various Access Modifiers in Java
java 02-Nov-2015
Various Access Modifiers in Java

Java provides four access modifiers to set access levels for classes, variables, methods and constructors.

What is “public static void main(String args[])”
java 02-Nov-2015
What is “public static void main(String args[])”

Detail explanation of the syntax "public static void main(String args[])" .

Architecture of Hibernate
java 30-Oct-2015
Architecture of Hibernate

Hibernate architecture is layered to keep us isolated from having to know the underlying API’s. There are four layers in hibernate architecture.

Various ways to Run a Java Project
java 30-Oct-2015
Various ways to Run a Java Project

Executing a program is a very essential part of application development cycle. There are various ways to execute a java program.

JRE and JDK for Java Platform
java 28-Oct-2015
JRE and JDK for Java Platform

If you are a Java programmer it’s very much important for you to have a better understanding of its Environment and basic concepts. So the very first thing which you should be knowing is, what is a JRE and JDK. While installing Java, you have to inst

Object Relational Mapping
java 20-Oct-2015
Object Relational Mapping

ORM is acronym for Object Relational Mapping, it is a programming technique for converting data between relational database and object

JAVA - AbstractFactory Pattern
java 02-Jul-2015
JAVA - AbstractFactory Pattern

The Abstract Factory is known as a creational pattern - it's used to construct objects such that they can be decoupled from the implementing system.