Option in the Database Manager CLI.
Use the option –c to logically delimit a Database Manager CLI option with optional parameters and a DBM command from each other. The Database Manager CLI program interprets all specifications following –c as a DBM command.
-c <DBM_command>
If you do not specify -c between the option with optional parameters and the DBM command, the beginning of the DBM command is interpreted as an operator name/password combination for the option –uSQL:
d:\v74>dbmcli -d a73 -u dbm,dbmp -uSQL sql_execute select * from tables
ERR
-24988,ERR_SQL: sql error
-4008,Unknown user name/password combination
You mark the beginning of the DBM command with the option –c. The default value is used for the –uSQL option.
d:\v74>dbmcli -d a73 -u dbm,dbmp -uSQL –c sql_execute select * from tables
OK
...