DBPro.Call

This command allows you to call any dbpro command from within your scripts (of dlls you registered, or were registered by lua make 1, or user functions you registered).
Remember however to include the dbpro dlls you want to use from your scripts by having a command from that dbpro dll within (or at the end of) your dbpro source code.
The first parameter is the name of the dbpro command you would like to call. The command name is without spaces and the leading characters are upper case.
e.g. "load object" has to be specified as "LoadObject"
The following parameters are the arguments the dbpro command needs. If the command returns something, then so does the DBPro.Call function.

Note: For some overloaded commands you have to use the extended call function DBPro.CallEx, when it is not clear what overloaded command you want to call.

SYNTAX

DBPro.Call(command_name as String [, parameters...])
Return=DBPro.Call(command_name as String [, parameters...])

RELATED INFO
LUA command menu
Index

EXAMPLE
Showcase-example 1
Showcase-example 2