Difference between revisions of "EXEC()"

From Lianjapedia
Jump to: navigation, search
 
Line 6: Line 6:
  
 
==See Also==
 
==See Also==
[[ALIAS]], [[DO]], [[EXECSCRIPT()]], [[KEYWORD]], [[RUN]], [[RUN()]], [[SPAWN]],
+
[[DO]], [[EXECJAVASCRIPT()]], [[EXECPHP()]], [[EXECPYTHON()]], [[EXECSCRIPT()]], [[SPAWN]]  
  
 
==Description==
 
==Description==

Latest revision as of 11:16, 12 December 2012

Purpose

Function to execute a list of commands

Syntax

EXEC(<expC1> [, <expC2> ...])

See Also

DO, EXECJAVASCRIPT(), EXECPHP(), EXECPYTHON(), EXECSCRIPT(), SPAWN

Description

The EXEC() function executes a list of commands. Each command is specified by <expC1>, <expC2>, and so on. The EXEC() function returns a logical true (.T.) if all the specified commands execute without error, or a logical false (.F.) if an error occurs.

Example

? exec("open database southwind","use example","browse")