Specifies the object enumeration.
Unit
MyDump
Syntax
TMyDumpObject = (doDatabase, doUsers, doStoredProcs, doTables, doData, doViews, doTriggers);
Values
Value | Meaning |
doData |
Stores data from the tables. The list of the tables is specified in TDADump.TableNames. If TableNames is not set, all tables are used. |
doDatabase |
Adds to the received script "CREATE DATABASE..." command. |
doStoredProcs |
Stores stored procedures structure in the script. The list of procedures is specified in TMyDump.StoredProcNames. If StoredProcNames is not set, all procedures are used. |
doTables |
Stores tables structure in the script. The list of tables is specified in TDADump.TableNames. If TableNames is not set, all tables are used. |
doTriggers |
Stores queries for creating triggers in the script. The list of triggers is specified in TMyDump.TriggerNames. If TriggerNames is not set and the TMyDump.TableNames property is empty, then all triggers of the database will be processed. If TriggerNames is not set and the TMyDump.TableNames property is not empty, then all triggers for the specified tables will be processed. |
doUsers |
Stores user privileges in the script. |
doViews |
Stores queries for creating Views in a script. The Views list is taken from TableNames. |