| xHarbour Reference Documentation > Function Reference |
![]() |
![]() |
![]() |
Creates a structure extended database file.
DbCopyExtStruct( <cDatabaseExt> ) --> lSuccess
The function returns .T. (true) when the structure extended file is sucessfully created, or .F. (false) when no database is open in a work area.
Function DbCopyExtStruct() creates a new structure extended database file. It is the functional equivalent of command COPY STRUCTURE EXTENDED. Refer to this command for more information on structure extended database files.
| See also: | COPY STRUCTURE, COPY STRUCTURE EXTENDED, CREATE, CREATE FROM, DbCopyStruct(), DbCreate(), DbStruct() |
| Category: | Database functions , xHarbour extensions |
| Source: | rdd\dbstrux.prg |
| LIB: | xhb.lib |
| DLL: | xhbdll.dll |
// The example creates a structure extended database file
// and displays its contents.
PROCEDURE Main
USE Customer
DbCopyExtStruct( "Test.dbf" )
USE Test
Browse()
USE
RETURN
http://www.xHarbour.com