Class Query

java.lang.Object
com.storedobject.core.Query
All Implemented Interfaces:
Closeable, AutoCloseable, Iterable<ResultSet>, Iterator<ResultSet>

public class Query extends Object implements Iterator<ResultSet>, Iterable<ResultSet>, Closeable
The Query class provides a mechanism to iterate over rows in a SQL result set. It implements Iterator<ResultSet>, Iterable<ResultSet>, and Closeable interfaces to facilitate traversing and managing the lifecycle of database query results using for/for each/while loops.

Query objects allow navigation through the result set, provide means to map results into other data types, and support optional transformation functions to manipulate individual rows.

Author:
Syam