Fetch full result set

After performing a select you get the number of rows defined in the settings. After this, there doesn't appear to be a way to finish execution and return the full result set (PL/SQL Developer had a fetch next/fetch full functionality). Is this planned to be included?

I did notice if you try and export it asks you if you want to finish the query.

Thanks
 
You can press the Ctrl-Page Down key (Windows/Linux) or End key (macOS) to explicitly fetch all results. There is also a SQL Document preference "Fetch records on demand". When disabled, all records will automatically be fetched.
 
Back
Top