WE PROVIDE ALL

Capitals Of All Countries

           I Here by given all the country capitals are given and recently modified(or) changed capitals are also mentioned here. All the Capitals of the countries in the world are given below in Alphabetical Order  from A to Z.   ...

To Reverse a given Number in Java

TO Reverse a Given Number in Java Steps to do Program: we take an Integer to store  the given number. After we have to take a try & catch block. If try block  consists a  error occuring  statement  is in this block. Then that statement must be...

Retrieve the data from the Database and Sort the Data Based on Job corresponding to Salary using Collections

Retrieve the data from the Database and Sort the Data Based on Job corresponding to Salary using Collections  Using this program we can get the entire row by giving any attribute value of that row by using only one Single HashMap and JavaBean. In  this program we...

Using Single HashMap we can Retrieve the Entire Row from Database using any Column value

Using Single HashMap we can Retrieve the Entire Row from Database using any Column value Using this program we can get the entire row by giving any attribute value of that row by using only one Single HashMap and JavaBean. In  this program we used the JDBC connection  to...

How to sort the Database Table (ordered by Job) using Collections

In this Program we are sorting based on their Job Category and Based on their Salary also. In this we taken Java Bean as object to sort the database table.We used Comparator for sorting and Employee type objects are stored in ArrayLists for Sorting. package com.nt.finals; import...

How to sort Database table(Many columns) using Comparable in collections

How to sort Database table(Many columns) using Comparable in collections: we can sort the Database Table of multiple columns using the Comparable in the  Collection  concept. package com.nt.extensive; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import...

How to Retrive the Database table and Sorting table using Java

package com.nt.sense; import java.io.BufferedReader; import java.io.InputStreamReader; import java.math.BigDecimal; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import...