Big Java, Binder Ready Version: Early Objects
Big Java, Binder Ready Version: Early Objects
6th Edition
ISBN: 9781119056447
Author: Cay S. Horstmann
Publisher: WILEY
Expert Solution & Answer
Book Icon
Chapter 24.4, Problem 8SC

Explanation of Solution

Efficient way to find the number of customers in Hawaii:

Consider the following query to know the number of customers in Hawaii:

//retrieving the customer’s data in Hawaii

ResultSet result = stat.executeQuery(

"SELECT COUNT(*) FROM Customer "

+ "WHERE State = 'HI'");

result.next();

int count = result.getInt(1);

Explanation:

In above query,

  • The variable “result”, which represents the “ResultSet” object.
  • The statement object “stat.executeQuery” retrieves the count of all data from the “Customer” table where “State” is equal to “HI”.
  • After that, the method “result.next()” moves the cursor to the first row and read the numbers of customers in Hawaii using the “ResultSet” method “result.getInt(1)” and store the result into the variable “count”.
    • Here, the “getInt(1)” returns the element at the index “1”...

Blurred answer
Knowledge Booster
Background pattern image
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education