data-atom
data-atom copied to clipboard
Better performance for large result sets
- Need to stream the results in when possible.
- Need to not add thousands of elements to the DOM when they are not visible
Maybe look at some nice table/grid control that will play nice with atom
This would be great! I was thinking of looking into "lazy fetching", where you can fetch the results via a button X rows at a time, or with a "fetch all" button. I'll have to look at the data access libraries here and see what is possible.
Some SQL editor tools wrap users query in a
SELECT ( {users_query} )
LIMIT {user_specified_page_limit: default 500}