Title: | 'Arrow' Database Connectivity ('ADBC') 'SQLite' Driver |
---|---|
Description: | Provides a developer-facing interface to the 'Arrow' Database Connectivity ('ADBC') 'SQLite' driver for the purposes of building high-level database interfaces for users. 'ADBC' <https://arrow.apache.org/adbc/> is an API standard for database access libraries that uses 'Arrow' for result sets and query parameters. |
Authors: | Dewey Dunnington [aut, cre] , Apache Arrow [aut, cph], Apache Software Foundation [cph] |
Maintainer: | Dewey Dunnington <[email protected]> |
License: | Apache License (>= 2) |
Version: | 0.15.0.9000 |
Built: | 2024-11-22 04:26:56 UTC |
Source: | https://github.com/apache/arrow-adbc |
ADBC SQLite3 Driver
adbcsqlite() ## S3 method for class 'adbcsqlite_driver_sqlite' adbc_database_init(driver, ..., uri = ":memory:") ## S3 method for class 'adbcsqlite_database' adbc_connection_init(database, ..., adbc.connection.autocommit = NULL) ## S3 method for class 'adbcsqlite_connection' adbc_statement_init( connection, ..., adbc.ingest.target_table = NULL, adbc.ingest.mode = NULL, adbc.sqlite.query.batch_rows = NULL )
adbcsqlite() ## S3 method for class 'adbcsqlite_driver_sqlite' adbc_database_init(driver, ..., uri = ":memory:") ## S3 method for class 'adbcsqlite_database' adbc_connection_init(database, ..., adbc.connection.autocommit = NULL) ## S3 method for class 'adbcsqlite_connection' adbc_statement_init( connection, ..., adbc.ingest.target_table = NULL, adbc.ingest.mode = NULL, adbc.sqlite.query.batch_rows = NULL )
driver |
An |
... |
Driver-specific options. For the default method, these are named values that are converted to strings. |
uri |
A URI to a database path or ":memory:" for an in-memory database. |
database |
An adbc_database. |
adbc.connection.autocommit |
Use FALSE to disable the default autocommit behaviour. |
connection |
|
adbc.ingest.target_table |
The name of the target table for a bulk insert. |
adbc.ingest.mode |
Whether to create (the default) or append. |
adbc.sqlite.query.batch_rows |
The number of rows per batch to return. |
An adbcdrivermanager::adbc_driver()
adbcsqlite()
adbcsqlite()