How to hide the dmsql tool window to final user?

~ 0 min
2020-06-19 04:42

To hide the dmsql window, developer can add the following command to script file.

d:\dbmaker\5.0\bin\dmSQL32.exe /b

The parameter /b can help to hide console, then remember to add quit in the script file, otherwise this process always alive until you kill from task manager.

For example,

executing dmsql32.exe /b test.sql

The content of test.sql as following:

connect to dbsample5 sysadm;

set linewidth off;

set printto dbinfo.out;

select * from SYSINFO;

select * from SYSUSER;

set printto off;

disconnect;

q;

Average rating 0 (0 Votes)

You cannot comment on this entry

Tags