Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL ResultSet scorrevole/aggiornabile non funziona come previsto

Come menziona Mark Rotteveel in un commento alla domanda, MySQL memorizza nella cache i dati ResultSet per impostazione predefinita (discusso anche in un articolo del blog di Ben J. Christensen qui ). Un apparente effetto collaterale di questa memorizzazione nella cache è che MySQL Connector/J "aggiornerà" un TYPE_FORWARD_ONLY ResultSet in modo che sia effettivamente scorrevole:

Statement s = dbConnection.createStatement(
        ResultSet.TYPE_FORWARD_ONLY, 
        ResultSet.CONCUR_READ_ONLY);
ResultSet rs = s.executeQuery("SELECT * FROM testdata");
rs.last();
System.out.println(String.format("Current row number: %d", rs.getRow()));
rs.previous();
System.out.println(String.format("Current row number: %d", rs.getRow()));

visualizza

Current row number: 3
Current row number: 2

Secondo l'articolo del blog sopra citato, il modo per impedire la memorizzazione nella cache e lo "streaming" dei dati ResultSet è utilizzare Statement.setFetchSize :

Statement s = dbConnection.createStatement(
        ResultSet.TYPE_FORWARD_ONLY, 
        ResultSet.CONCUR_READ_ONLY);
s.setFetchSize(Integer.MIN_VALUE);
ResultSet rs = s.executeQuery("SELECT * FROM testdata");
rs.next();
System.out.println("Data from first row: " + rs.getString(2));
System.out.println("now let's try rs.last() ...");
try {
    rs.last();
    System.out.println("... Okay, done.");
} catch (Exception e) {
    System.out.println("... Exception: " + e.getMessage());
}

con conseguente

Data from first row: Gord
now let's try rs.last() ...
... Exception: Operation not supported for streaming result sets