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
I was hoping pagination could be added but I'm not sure how that would work. Maybe select count(*) from table before the actual query? It would make every query slower though. Is this a wanted feature?
Thanks for this tool anyways!
The text was updated successfully, but these errors were encountered:
Currently pagination is up to the author of the query to control i.e. by using limit and top clause. Since it is possible to redirect the output of the program to file, modifying the query of the user to add a limit clause can give undesirable results.
Understandable. What if it was an option? I ask this because while it's always desirable to get the full query response when scripting, we don't always (most likely never) want it on interactive mode. The option could even have an optional setting for the row count of each page that default to terminal height or something. I'm gonna fiddle a bit with this
Hi I love this
I was hoping pagination could be added but I'm not sure how that would work. Maybe
select count(*) from table
before the actual query? It would make every query slower though. Is this a wanted feature?Thanks for this tool anyways!
The text was updated successfully, but these errors were encountered: