Code Monkey home page Code Monkey logo

Comments (2)

Tapac avatar Tapac commented on May 14, 2024

The problem is that all() function (along with find{}) returns SizedCollection which is wrapper over jdbc ResultSet. On each .next() invocation it returns next row from result set and wraps it with an Entity.
Purpose of this is to allow client to control how much data he wants too fetch overall on all()/find() (something like Kotlin sequences).

As PSQL doesn't support concurrent requests within same connection, first result set (Select * FROM PlannedActivities query) is closing by a driver and you fail with org.postgresql.util.PSQLException: This ResultSet is closed exception.

Workaround is to load everything before .forEach() with simple .toList():

val objs = PlannedActivity.all().toList().forEach { act ->
                activs.append("<b>"+act.id+"</b>: "+
                    act.members.joinToString { memb -> memb.user.psnName + " (@" + memb.user.telegramName + ")" }+
                    " going to " + act.activity.name + " " + act.activity.mode +
                    " at <b>" + formatStartTime(act.start) + "</b>\n")
            }```

from exposed.

berkus avatar berkus commented on May 14, 2024

It worked! Thank you.

Only additional change I had to make was:

     act.members.toList().joinToString { memb -> memb.user.psnName + " (@" + memb.user.telegramName + ")" }+

because it also uses a collection with sub-queries.

Definitely deserves a line in the docs.

from exposed.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.