Class TTrackRecTarget
Unit
DBTrackTool
Declaration
type TTrackRecTarget = class(TComponent)
Description
non visual component defining dataset which stores tracked records of all related TTrackRecSource components
Hierarchy
- TComponent
- TTrackRecTarget
Overview
Methods
|
procedure SaveTrackRec(Action: TTrackingEvent; TableName, KeyValue: string; Changes, Memo: string; Special: integer; CustomMemo: string = ''); |
Properties
|
property TargetDataSet: TDataSet read FTargetDataSet write SetTargetDataSet; |
|
property Disable: boolean read FDisable write FDisable; |
|
property FieldDateTime: string read FFieldDateTime write FFieldDateTime; |
|
property FieldUser: string read FFieldUser write FFieldUser; |
|
property FieldAction: string read FFieldAction write FFieldAction; |
|
property FieldTableName: string read FFieldTableName write FFieldTableName; |
|
property FieldKeyValue: string read FFieldKeyValue write FFieldKeyValue; |
|
property FieldChanges: string read FFieldChanges write FFieldChanges; |
|
property FieldMemo: string read FFieldMemo write FFieldMemo; |
|
property FieldCustomMemo: string read FFieldCustomMemo write FFieldCustomMemo; |
|
property FieldSpecial: string read FFieldSpecial write FFieldSpecial; |
|
property ActiveUser: string read FActiveUser write FActiveUser; |
|
property OnGetDateTime: TTrackGetDateTime read FOnGetDateTime write FOnGetDateTime; |
|
property ChangesFormat: TChangesFormat read FChangesFormat write FChangesFormat; |
Description
Methods
|
procedure SaveTrackRec(Action: TTrackingEvent; TableName, KeyValue: string; Changes, Memo: string; Special: integer; CustomMemo: string = ''); |
main procedure for saving of record, used mainly by related TTrackRecSource
|
Properties
|
property TargetDataSet: TDataSet read FTargetDataSet write SetTargetDataSet; |
Link to DataSet used for saving of tracked records
|
|
property Disable: boolean read FDisable write FDisable; |
Defines whether tracking is disabled for all related TTrackRecSource
|
|
property FieldDateTime: string read FFieldDateTime write FFieldDateTime; |
Defines names of DateTime field in target dataset
|
|
property FieldUser: string read FFieldUser write FFieldUser; |
Defines names of UserName field in target dataset
|
|
property FieldAction: string read FFieldAction write FFieldAction; |
Defines names of Action field in target dataset
|
|
property FieldTableName: string read FFieldTableName write FFieldTableName; |
Defines names of TableName field in target dataset
|
|
property FieldKeyValue: string read FFieldKeyValue write FFieldKeyValue; |
Defines names of KeyValue field in target dataset
|
|
property FieldChanges: string read FFieldChanges write FFieldChanges; |
Defines names of Changes text field in target dataset
|
|
property FieldMemo: string read FFieldMemo write FFieldMemo; |
Defines names of Memo field in target dataset
|
|
property FieldCustomMemo: string read FFieldCustomMemo write FFieldCustomMemo; |
Defines names of CustomMemo field in target dataset
|
|
property FieldSpecial: string read FFieldSpecial write FFieldSpecial; |
Defines names of Special field in target dataset
|
|
property ActiveUser: string read FActiveUser write FActiveUser; |
Defines user name which is saved in target dataset
|
|
property OnGetDateTime: TTrackGetDateTime read FOnGetDateTime write FOnGetDateTime; |
event used for user definition of DateTime value
|
|
property ChangesFormat: TChangesFormat read FChangesFormat write FChangesFormat; |
define format of change information text
|
Generated by PasDoc 0.15.0.
|