Die Attributfunktion GetDataByOrdinal lädt die Daten zum aktuellen Dateneintrag des geladenen Datensatzes.
Syntax | |||||
GetDataByOrdinal(Ordinal, NullValue) | |||||
Rückgabewert | |||||
Typ |
Beschreibung | ||||
Variant |
Inhalt des Feldes des aktuellen Datensatzes | ||||
Parameter | |||||
Verwendung |
Name |
Typ |
Übergabe |
Beschreibung | |
Erforderlich |
Ordinal |
Long |
ByVal |
Spaltennnummer, bei 0 beginnend | |
Erforderlich |
NullValue |
Variant |
ByVal |
Rückgabewert, wenn das Feld Null ist | |
Beispiel:
Dim T As Table
T.Connection := DBCRM
T.Query := "SELECT OPPSTATUS,OPPVOLUME FROM DBO.OPPORTUNITIES WHERE OPID='1521587'"
If T.EOF = False Then
OPPSTATUS := T.GetDataByOrdinal(0, 0)
OPPVOLUME := T.GetDataByOrdinal(1, 0)
End If