-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Hello,
may I ask You to consider following RFE? RFE: Session plugin can run also SQL script from Bookmark.
Now, the Session plugin run script defined inside a plugin textarea input box. It would be nice, if this plugin can be enriched by placeholder, which will include SQL script by its Name as defined in Bookmarks.
The simplest way (just only one script):
@runscript "ACC/App1/monitorA";
More sophisticated way (more scripts):
@runscript "ACC/App1/monitorA";
@runscript "ACC/App1/monitorB";
@runscript "ACC/App1/monitorC";
The most sophisticated way (combining SQL commands with one or more placeholders for scripts from Bookmarks):
select * from "myTable01";
@runscript "ACC/App1/monitorA";
select * from "myTable02";
@runscript "ACC/App1/monitorB";
select * from "myTable03";
@runscript "ACC/App1/monitorC";
Thank You in advance, Stepan