Top "Resultset" questions

A result set is a set of rows from a database, which is usually generated by executing a statement that queries the database.

getting count(*) using createSQLQuery in hibernate with regular expression statement

I'm trying to count columns with hibernate 3.2.5 createSQLQuery, because I use where statement, which use regular expression(it doesn't work …

hibernate postgresql select count resultset
Does JDBC have a maximum ResultSet size?

Is there a maximum number of rows that a JDBC will put into a ResultSet specifically from a Hive query? …

java jdbc hive resultset
How to copy table from one database to another?

I need to take a table from one database and upload it to a different database. So, I create two …

java resultset
JDBC driver throws "ResultSet Closed" exception on empty ResultSet

I have a problem in JDBC driver for SQLite. I am executing a query with SELECT statement. If I get …

java sqlite exception jdbc resultset
Batch multiple select statements when calling Oracle from ADO.NET

I want to batch multiple select statements to reduce round trips to the database. The code looks something like the …

c# oracle ado.net resultset
How to set fetchSize for iBatis select statement

I'm using iBatis as ORM framework in Java. I have a select statement <select id="getList" resultMap="correctMap"> …

java performance ibatis resultset
Java JDBC Lazy-Loaded ResultSet

Is there a way to get a ResultSet you obtain from running a JDBC query to be lazily-loaded? I want …

java jdbc lazy-loading resultset
Spring JDBCTemplate Stored Procedure with ResultSet and OutPut Parameter

I created a stored procedure which returns result rows and two output parameters. I am unable to find any thing …

spring resultset jdbctemplate java-stored-procedures output-parameter
When to close Connection, Statement, PreparedStatement and ResultSet in JDBC

Few questions on JDBC coding: For a single client application, do we need a Connection pool? Is it a good …

java jdbc connection resultset
Display Items from a Database in a JavaFX TableView

Ok, so I'm new to this, and I've been searching for two weeks trying to get an SQL resultset to …

list javafx tableview resultset println