Operation |
Details |
public Versions( DBDataAdmin dbAdmin): |
|
public VersionFromFile( string fileName, string versionName):int |
Notes: | Create version from CSV file. Table is saved in work database.
@returns ID new version | |
public VersionFromTableToTable( Table tableFrom, Table tableTo, string versionName, DBDataAdmin dbAdmin, int fromVersionId):int |
Notes: | Create version from table
@returns return new version id or -1 if something failed | |
public VersionFromTable( Table table, string versionName):int |
Notes: | Load data from specific table_name (selected connection) to work database
@returns return new version id or -1 if something failed | |
public VersionFromVersion( int fromVersionId, Table table, string data, int methodId, string versionName):int |
Notes: | create new version of data from previous version
@returns return new version id or -1 if something failed | |
public AddToVersionList( Version ver):void |
Notes: | Add version into version list | |
public NewVerId():int |
<<property>> Notes: | Sequence for version ID | |
public Dispose():void |
Notes: | Dispose all versions from version list | |
public this( int id):Version |
<<indexer>> Notes: | Version from version list at specific index | |
public RemoveFromVersionList( Version ver):void |
Notes: | Remove version from version list | |
private FillUpTreeViewControlRecursive( TreeNode tn, Version ver, TreeView tv, int selectedVer):void |
Notes: | Fill up tree view control. (auxiliary method)
@param ="verId" version ID | |
public FillUpTreeViewControl( TreeView treeView):void |
Notes: | Fill up tree view control with versions | |
public ActualVersion():int |
<<property>> Notes: | Last used version Id | |
public ActualVersionObject():DMTransformStruct.Version |
<<property>> Notes: | Last used version object | |
public DropVersion( int verId):void |
Notes: | Drop version with specified index | |