Demo Scrollable ResultSet from MySQL : ResultSet Scrollable « Database SQL JDBC « Java






Demo Scrollable ResultSet from MySQL

 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class DemoScrollableResultSet_MySQL {

  public static Connection getConnection() throws Exception {
    String driver = "org.gjt.mm.mysql.Driver";
    String url = "jdbc:mysql://localhost/databaseName";
    String username = "root";
    String password = "root";
    Class.forName(driver);
    return DriverManager.getConnection(url, username, password);
  }

  public static void main(String[] args) {
    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;
    try {
      conn = getConnection();
      String query = "select id, name from employees";
      stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
      rs = stmt.executeQuery(query);
      // extract data from the ResultSet scroll from top
      while (rs.next()) {
        String id = rs.getString(1);
        String name = rs.getString(2);
        System.out.println("id=" + id + "  name=" + name);
      }
      // scroll from the bottom
      rs.afterLast();
      while (rs.previous()) {
        String id = rs.getString(1);
        String name = rs.getString(2);
        System.out.println("id=" + id + "  name=" + name);
      }
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      // release database resources
      try {
        rs.close();
        stmt.close();
        conn.close();
      } catch (SQLException e) {
        e.printStackTrace();
      }
    }
  }
}
           
         
  








Related examples in the same category

1.Determining If a Database Supports Scrollable Result Sets
2.Create a scrollable result sets
3.Get Number Of Rows in a Scrollable ResultSet from MySQL
4.Scrollable resultset
5.Get the fetch size of a statement
6.Set the fetch size on the statement
7.Change the fetch size on the result set
8.Move cursor to the last record
9.Move cursor to the first row
10.Move cursor to the last row
11.Move cursor to the end, after the last row
12.Move cursor backward
13.Move the cursor back and forth with absolute index
14.Move cursor to the beginning, before the first row
15.Move cursor to the second last row with absolute position
16.Move cursor down 5 rows from the current row. If this moves cursor beyond the last row, cursor is put after the last row
17.Move cursor up 3 rows from the current row. If this moves cursor beyond the first row, cursor is put before the first row
18.Get the current position of cursor
19.Move cursor in scrollable result sets
20.If cursor is in the last row
21.Check if cursor is in the first row
22.Moving the Cursor in a Scrollable Result Set
23.Getting the Cursor Position in a Scrollable Result Set
24.Getting the Number of Rows in a Table Using a Scrollable Result Set
25.Create an insensitive scrollable result set
26.Create a sensitive scrollable result set