I have added some in-memory data sources which dramatically speed up and simplify the display of lists with running totals by using SQL-windowing functions.
Now the users would like to export the data and I would like to create a dataset based on the in-memory data source... (which is not shared with other users, so I don't have a database server).
I'd like to do something like:
- Code: Select all
var ds = databaseManager.getDataSetByQuery("mem",query,args,maxrows);
This does not work on Servoy 2019.03.1.
I suppose the fallback option is to isolate the query and args as a function and rerun from the original data source...