query_all missing first DB::ResultSet entry
carcinocron opened this issue · 1 comments
carcinocron commented
What is the intended difference between query
and query_all
? I was using query_all
then noticed that the first expected entry from the query was always missing. Changing to just query
fixed this.
bcardiff commented
query_all
should return an Array with one element per row
query
will yield a result set that you are responsible to iterate.
The documentation for such methods live in http://crystal-lang.github.io/crystal-db/api/latest/DB/QueryMethods.html
If you can share some small code to reproduce the unexpected behaviour we can see what might be happening.