Hi everyone,
I'm currently writing a script that pulls data from a DB. I add several scripts to the datatable (not in a column, but in the script box, frame top left of the datatable).
JMP adds standard some of the scripts. One of them is 'Save To DB'. This script needs to get deleted in the script I'm writing.
I can't have the users run this script accidently. In the past we did 1 DB-update and it completely destroyed the structure of our DB (meaning other programs that connect to th DB stopped working). Therefore leaving it in is actually a big production risk (and it will happen frequently).
I can add scripts with
dt << New Script( ... );
however,
dt << Delete Script( 'MyScript' );
doesn't work.
Can anyone help me with this please?
Thanks!!!