You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PreparedStatementps = con.prepareStatement("SELECT data FROM filme " + where + " ORDER BY data ->> 'sender', data ->> 'thema', data ->> 'titel'");
119
+
PreparedStatementps = con.prepareStatement("SELECT data FROM filme " + where + " ORDER BY data ->> 'sender', data ->> 'thema', data ->> 'titel' " + limit);
119
120
) {
120
121
ps.setFetchSize(50000);
121
122
try (ResultSetrs = ps.executeQuery()) {
@@ -136,7 +137,7 @@ public Optional<Filmlist> readFilmlistFromDB(String where) {
0 commit comments