Declaration:
Dump( inDumpFile as FolderItem, inDumpType as Integer, inDumpData as EVDataKind = kStructureAndRecords, inFormatDump as Boolean = false, inEncoding = "UTF-16" )
Parameters:
Description:
Dumps all possible information about a database into a dump file.
DumpType can be one of the following:
Example:
dim tbl as VTable ... tbl.Dump( fiXML, EVDumpType.kXML )
Declaration:
LoadDump( inDumpFile as FolderItem, inDumpType as Integer, inEncoding = "UTF-16" )
Parameters:
Description:Loads a XML or SQL dump from the specified file into the Table.
Example:
dim tbl as VTable ... tbl.LoadDump( fiXML, fiNewtbl, EVDumpType.kXML )