Questions tagged [helidon-dbclient]

2 questions
3
votes
2 answers

What is the correct way to fetch large number of rows from DB through Helidon DBClient

What is the DBClients recommended way to work with a large number of rows? I am currently using the execute() API on DbStatement that returns Multi. Will this download the whole universe into JVM memory or does it internally stream in batches? If it…
Ashwin Prabhu
  • 9,285
  • 5
  • 49
  • 82
2
votes
1 answer

Why the Helidon MongoDbStatement doesn't support Sort operations?

I interested the Helidon SE with MongoDB and my POC requires some REST API with sort support. I investigated some examples and implementation of helidon-dbclient-mongodb, but I didn't see the sort support. Will this be implemented in the future or…