- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get the row count in JDBC?
The SQL Count() function returns the number of rows in a table. Using this you can get the number of rows in a table.
select count(*) from TABLE_NAME;
Suppose we have established a connection with MySQL and created a table in the database named mydatabase using Statement object as:
//Creating the Statement object Statement stmt = con.createStatement(); //Query to create a table String query = "CREATE TABLE Cricketers_Data( " + "First_Name VARCHAR(255), " + "Last_Name VARCHAR(255), " + "Date_Of_Birth Date, " + "Place_Of_Birth VARCHAR(255), " + "Country VARCHAR(255))"; //Executing the query stmt.execute(query); System.out.println("Table created......");
In to this table we have inserted 5 columns using prepared statement as:
//Query to insert values Query = "INSERT INTO Cricketers_Data values (?, ?, ?, ?, ?)"; PreparedStatement pstmt = con.prepareStatement(query); pstmt.setString(1, "Shikhar"); pstmt.setString(2, "Dhawan"); pstmt.setDate(3, new Date(376401869000L)); pstmt.setString(4, "Delhi"); pstmt.setString(5, "India"); pstmt.executeUpdate(); pstmt.setString(1, "Jonathan"); pstmt.setString(2, "Trott"); pstmt.setDate(3, new Date(356788333000L)); pstmt.setString(4, "CapeTown"); pstmt.setString(5, "SouthAfrica"); pstmt.executeUpdate(); pstmt.setString(1, "Kumara"); pstmt.setString(2, "Sangakkara"); pstmt.setDate(3, new Date(246801133000L)); pstmt.setString(4, "Matale"); pstmt.setString(5, "Srilanka"); pstmt.executeUpdate(); pstmt.setString(1, "Virat"); pstmt.setString(2, "Kohli"); pstmt.setDate(3, new Date(546781933000L)); pstmt.setString(4, "Delhi"); pstmt.setString(5, "India"); pstmt.executeUpdate(); pstmt.setString(1, "Rohit"); pstmt.setString(2, "Sharma"); pstmt.setDate(3, new Date(546781933000L)); pstmt.setString(4, "Nagpur"); pstmt.setString(5, "India"); pstmt.executeUpdate();
This makes the Cricketers_Data table look like:
+------------+------------+---------------+----------------+-------------+ | First_Name | Last_Name | Date_Of_Birth | Place_Of_Birth | Country | +------------+------------+---------------+----------------+-------------+ | Shikhar | Dhawan | 1981-12-05 | Delhi | India | | Jonathan | Trott | 1981-04-22 | CapeTown | SouthAfrica | | Kumara | Sangakkara | 1977-10-27 | Matale | Srilanka | | Virat | Kohli | 1987-04-30 | Delhi | India | | Rohit | Sharma | 1987-04-30 | Nagpur | India | +------------+------------+---------------+----------------+-------------+
Example
Following JDBC program establishes connection with MySQL and displays the number of rows in the table named cricketers_data.
import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class Count_Example { public static void main(String args[]) throws Exception { //Registering the Driver DriverManager.registerDriver(new com.mysql.jdbc.Driver()); //Getting the connection String mysqlUrl = "jdbc:mysql://localhost/mydatabase"; Connection con = DriverManager.getConnection(mysqlUrl, "root", "password"); System.out.println("Connection established......"); //Creating the Statement object Statement stmt = con.createStatement(); //Query to get the number of rows in a table String query = "select count(*) from Cricketers_Data"; //Executing the query ResultSet rs = stmt.executeQuery(query); //Retrieving the result rs.next(); int count = rs.getInt(1); System.out.println("Number of records in the cricketers_data table: "+count); } }
Output
Connection established...... Number of records in the cricketers_data table: 5
- Related Articles
- How to get the row count from ResultSet in JDBC
- How to get Row and Column Count from ResultSet in JDBC
- How to get column count in a ResultSet in JDBC?
- How to get the row count of a Pandas DataFrame?
- How to get the current value of a particular row from a database using JDBC?
- How to move the ResultSet cursor to the next row in JDBC?
- How to move the ResultSet cursor to the previous row in JDBC?
- How to move the ResultSet cursor to the last row in JDBC?
- How to move the ResultSet cursor to the first row in JDBC?
- How to get row count of two tables in different databases in a single query?
- JavaScript Get row count of an HTML table?
- How to update the column of a row in a CachedRowSet object in JDBC?
- How to find the current row of a ResultSet object using JDBC?
- How to delete a row from ResultSet object using JDBC?
- How to insert a row into a ResultSet object using JDBC?

Advertisements