Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_closedbf() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_CLOSEDBF()

 DESCRIPTION

 The C_CLOSEDBF() function closes the specified database files using
 the alias names.  C_CLOSEDBF() can accept up to nine parameters
 specifying the alias names to close or a single array containing
 any number of alias names to close.

 SYNTAX

 C_CLOSEDBF(alias1 [,alias2]...[,alias9])

 PARAMETERS

 alias1 (C/A) is the database to close.  The alias1 argument can be
 specified as one specific alias name or as an array containing any
 number of alias names to close.

 alias2...alias9 (C) are the second through ninth alias names to
 close.  Note that these arguments only have meaning if the alias1
 argument is an alias name and not an array.

 RETURNS

 There is no return value.

 EXAMPLES

 c_closedbf("TEST")                     && Close one file

 c_closedbf("TEST1","TEST2","TEST3")    && Close three files

 declare a1[3]
 a1[1] = "TEST1"
 a1[2] = "TEST2"
 a1[3] = "TEST3"

 c_closedbf(a1)         && Close files using array


See Also: C_CLOSEAREA() C_ISOPEN()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson