executeUpdate devolverá el número de filas afectadas, no la fila actual.
Prueba esto
ResultSet rs = aStatement.executeQuery("SELECT LAST_INSERT_ID()");
while(rs.next())
{
key = rs.getInt(1);
}
executeUpdate devolverá el número de filas afectadas, no la fila actual.
Prueba esto
ResultSet rs = aStatement.executeQuery("SELECT LAST_INSERT_ID()");
while(rs.next())
{
key = rs.getInt(1);
}