Steps to reproduce:
Run any new sql query:
query << Run Foreground(
OnRunComplete(
Write( "Number of rows in query result: ", N Rows( queryResult ) )
)
);
MyRunCompleteFunc = Function( {dt},
{Default Local},
Write( "Number of rows in query result: ", N Rows( dt ) )
);
query << Run Foreground( OnRunComplete( MyRunCompleteFunc ) );
Next, if you try to delete the database, it will say that jmp is still using the database.
Is there a way to close the database connection? The function Close Database Connection() does not seem to do the trick.