odbc_recordsetOpen()

Zusammenfassung

Öffnet die Datensatzgruppe des angegebenen Typs in der Datenbank mithilfe eines SQL-Ausdrucks.

Syntax

odbc_recordsetOpen ( db As Part, _
                     type As Name, _
                     SQLstatement As String, _
                     Optional options As List = {}, _
                     Optional ignoreErrors? As Boolean = False, _
                     Optional reuse? As Boolean = False, _
                     Optional requery? As Boolean = False, _
                     Optional maxStringSize As Integer = 1024, _
                     Optional updateOnUpdate? As Boolean = True, _
                     Optional manualDelete? As Boolean = False ) As User
Argument Typ Beschreibung
db Bauteil ODBC-Datenbank bauteil
Typ Name Typ der zu öffnenden Datensatzgruppe. Folgende Werte sind möglich: :snapshot, :dynaset, :forwardonly
SQLstatement Zeichenfolge Die SQL-Anweisung, die die Erstellung der Datensatzgruppe bewirkt.
options Liste Optional. VERALTET. Vorgabe ist {}.
ignoreErrors? Boolesche Operation Optional. Wenn das Argument True ist, werden Datenbankfehler nicht als Intent-Ausnahmen gemeldet. Vorgabe ist False.
reuse? Boolesche Operation Optional. VERALTET. Vorgabe ist False.
requery? Boolesche Operation Optional. VERALTET. Vorgabe ist False.
maxStringSize Ganzzahl Optional. Gibt die maximale Länge der Puffer zurück, die für die Felder mit Zeichenfolge/char-Daten reserviert sind. Vorgabe ist 1024.
updateOnUpdate? Boolesche Operation Optional. VERALTET. Vorgabe ist True.
manualDelete? Boolesche Operation Optional. VERALTET. Vorgabe ist False.