eBiss 3

Hilfe & Dokumentation

User Tools

Site Tools


en:transformation:mappings:objektdefinition:attribute:dbadapterobject

DbAdapter Object Attributes

Depending on class eBiss.DbAdapter. DbAdapter attributes are usually defined as follows for database integration.

DynamicTable

With this attribute, the data py is only validated against the DB schema during INSERT or UPDATE operations.
SELECT operations can be executed although the eBiss object contains fields that do not exist in the DB schema. Useful for eBiss systems with several versions of a backend DB.

##DB Schema
CREATE TABLE DynamicTable
(
       Id INT IDENTITY(1,1) NOT NULL,
       CommonField1 VARCHAR(50) NULL,
       RecordType INT NOT NULL,
)
GO
//CS Object:
    public class DynamicTableDoc : IDbMapObjectRoot
    {
        [MapTrigger]
        public DynamicTable DynamicTable;
 
    }
 
    [DynamicTable]
    public class DynamicTable : IMapObjectItem
    {
        [PrimaryKey(PrimaryKeyType.Auto)]
        public int Id;
 
        public string CommonField1;
        public int RecordType;
 
        public string NonExistantStringField;
 
        public int NonExistanteIntField;
 
    }

eBiss Log:
|

LookupReference()

PrimaryKey()

Select and use the primary key of the table.

[PrimaryKey(PrimaryKeyType.Auto)]//Auto from DB. SQL int primary key field that the server will automatically generate.
public int PrimaryKey;
PrimaryKeyType.GUID	//Globally Unique Identifier, if set as primary key field in the DB
[PrimaryKey(PrimaryKeyType.Counter, "TableCounters", "FieldName = 'ValueHeaderTable'", "FieldCurrent")]//Select FieldCurrent from TableCounters where FieldName = 'ValueHeaderTable'. Will read last counter and write the next (always +1)
[MapFrameDocumentNumber]
public int PrimaryKey;
PrimaryKeyType.Max//Not implemented
public int PrimaryKey;

PrimaryKey(PrimaryKeyType.Sequence, "seqence name")

Für die automatisch Vergabe von Primärschlüsselwerten beim Microsoft SQL Server können jetzt SEQUENCE verwendet werden. Hierzu verwendet man im Attribut PrimaryKey den Parameter PrimaryKeyType.Sequence und gibt als zweiten Parameter den Namen der SEQUENCE an, z.B.:

     [PrimaryKey(PrimaryKeyType.Sequence, "TestSequence")]
     public int Id;

ReadMarker()

Mark this field1) if the data record read under MapTrigger is read successfully. There are three different types:

[ReadMarker(ReadMarkerType.CheckUpdate, "$foo", "$bar")]//;
[ReadMarker(ReadMarkerType.Timestamp)]//schreibt aktuelles DateTime(im DB ISO Format) des Selects
public DateTime FieldName;
[ReadMarker(ReadMarkerType.UpdateOnly, DoneVal = "$foo")]// aktualisiert FieldName mit $foo
public string FieldName;
[ReadMarker(ReadMarkerType.StatusTable, "StatusTable", true)]// INSERT eines neuen Records in die Tabelle "StatusTable", bei dem unter "DocumentId" der Wert von "DocNumber" mit "ReadTimeStamp" und "TypeName" eingetragen wird.
public string DocNumber;


$foo oder $bar dürfen als String oder auch als Variable verwendet werden.|

Where()Ein Attribut welches die WHERE-Clause bei SELECT mit AND erweitert.
[Where("( ReadTimestamp < $ReadTimestamp AND ReadTimestamp > $ReadTimestamp_2 ) ", true)]
public DateTime ReadTimestamp;
Relation()
1)
Exception ReadMarkerType. StatusTable, where a new record is inserted into a dedicated table INSERTed.
en/transformation/mappings/objektdefinition/attribute/dbadapterobject.txt · Last modified: 2024/02/20 08:15 by 127.0.0.1