What Does “Think Outside of the Box” Mean ?
In the IT Industry one of the most well-worn phrase is a "Thinking Outside of the Box". It's all about creativity and doing the things in Best+ way. Think a situation like below
Question -: In a MCQ questionnaire num of choices for a question can be change, but only one answer can be selected. Think you have all the answers...
Tuesday, March 26, 2019
Monday, April 3, 2017
Duplicate Table in Sql Server , Oracle and MySql

SQL Server
SELECT *
INTO NEW_TABLE_NAME
FROM OLD_TABLE;
Oracle & MySql
CREATE TABLE NEW_TABLE_NAME AS (SELECT * FROM OLD_TABLE);
Get more from : http://techprogramme.co...
Wednesday, February 1, 2017
Spring + Hibernate + MySql

In this article i'm discussing about how to use Spring and Hibernate with MySql
First create MySql Database using below script
springtutorial Database has two tables dmo_t_customer and dmo_t_item which has 1 to Many relationship.
CREATE DATABASE springtutorial;
USE `springtutorial`;
/*Table...
Wednesday, September 14, 2016
Show alertdialog from a service in Android

Use this code segment in your service
AlertDialog alertDialog;
AlertDialog.Builder alertBuilder = new AlertDialog.Builder(getBaseContext());
alertBuilder.setTitle("New Approvals Alert")
...
Monday, June 20, 2016
RESTful Web Services(JAX-RS) in JavaEE with IntelliJ IDEA
What Are RESTful Web Services?
RESTful web services are built to work best on the Web. Representational State Transfer (REST) is an architectural style that specifies constraints, such as the uniform interface, that if applied to a web service induce desirable properties, such as performance, scalability,...
Wednesday, May 25, 2016
Factory Pattern With Reflection

An important aspect of software design is the manner in which objects are
created, although far more time is often spent considering the object model and
object interaction. But if this simple design (of object creation) aspect is
ignored, it will adversely impact the entire system. Thus, it...
Subscribe to:
Posts (Atom)