lmLoadData
lmLoadData(
t_file
t_lib [ { t_path | nil } [ { t_config | nil } [ { t_mode | nil } ] ] ]
)
=> t / nil
Description
Opens a working library, loads the library command file, and closes the library when you are finished.
Arguments
|
t_file
|
S/SLG library command filename.
|
|
t_lib
|
Working library name.
|
|
t_path
|
Search path of the working library. If you specify a null string or nil, the program searches paths previously set up by dbSetPath for the named library.
|
|
t_config
|
Configuration name, which lets you to set up the working context of the library. If you specify a null string or nil, the program uses the default configuration.
|
|
t_mode
|
Valid Values: r (read only), a (append), w (write only) Default: r
|
Example
lmLoadData( "myFile.lm" "myLib" "" "" "a" )
Loads a command file, where myFile.lm is the library command file, and myLib is your working library.
Return to top