Git Product home page Git Product logo

Comments (6)

aldenquimby avatar aldenquimby commented on August 30, 2024

Anyone have thoughts on this? I have the code ready to rock and will send a pull request soon

from sql2o.

aaberg avatar aaberg commented on August 30, 2024

I agree that sql2o really needs a way to lazy-fetch from the database with a cursor while the connection is open, but I have never concluded how best to implement it.
I'm really curious how you solved it! How do you make curtain that the connection is closed after use?

from sql2o.

aldenquimby avatar aldenquimby commented on August 30, 2024

Well, you cannot make certain that the connection is closed after use, because exposing an iterable means you have no idea when someone will stop iterating. You cannot simply close the connection when iterating completes, because someone might only pull out 1000 results then decide to stop iterating. I believe the best you can do is make it easy to figure out for a developer that wants to use lazy functionality.

You can see what I did here: https://github.com/aldenquimby/sql2o/blob/master/src/main/java/org/sql2o/Query.java#L274

You can see Java 6 usage by looking at the executeAndFetch method in the link above.

Basic Java 7 usage would look like this:

try (ResultSetIterable<MyClass> rsIterable = query.executeAndFetchLazy(MyClass.class))
{
    for (MyClass obj : rsIterable)
    {
        // do work here, maybe flush 1000 results at a time or something
    }
}

from sql2o.

aaberg avatar aaberg commented on August 30, 2024

Wow, that is a way better solution that I had in mind. This is indeed a very valuable addition to the project! If you create a pull request, I will happily merge it in, and release a new version soon.

from sql2o.

aldenquimby avatar aldenquimby commented on August 30, 2024

Ok great! I will add a few more tests before submitting a pull request. Also I would like to move ResultSetIterator to another file (so that it isn't a subclass of Query), but then I wouldn't have access to the method getRSVal.

Could I move this to some sort of utility class? Or do you think I should just leave the iterator as an inner class of query?

from sql2o.

aaberg avatar aaberg commented on August 30, 2024

You could perhaps change the accessibility of the getRSVal method to be package internal, and move the ResultSetIterator to a new class in the same package.

Alternatively the getRSVal method could be moved to a utility class in the tools package and made public.

Either way, I think it is best to get it out of Query

from sql2o.

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.