ConstReadonlyAppend: "adbc.ingest.mode.append"Append to an existing table. Fails if the table does not exist.
ReadonlyCreate: "adbc.ingest.mode.create"Create a new table and insert. Fails if the table already exists.
ReadonlyCreateAppend: "adbc.ingest.mode.create_append"Create the table if it does not exist, then append.
ReadonlyReplace: "adbc.ingest.mode.replace"Drop the existing table (if any) and recreate it, then insert.
Ingestion modes for the
ingestconvenience method.These correspond to the
adbc.ingest.mode.*option values in the ADBC spec.