├── .Rbuildignore ├── .github └── workflows │ └── sync.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── NAMESPACE ├── R ├── cleanup.R ├── fetch.R ├── json.R └── pull.R ├── README.Rmd ├── README.md ├── backends.Rproj ├── docs ├── all.json └── by-package │ ├── AzureKusto.json │ ├── ClickHouseHTTP.json │ ├── DBI.RODBC.json │ ├── DBI.RPgSQL.json │ ├── DatabaseConnector.json │ ├── MonetDB.R.json │ ├── MonetDBLite.json │ ├── RAthena.json │ ├── RClickhouse.json │ ├── RH2.json │ ├── RJDBC.json │ ├── RMariaDB.json │ ├── RMySQL.json │ ├── RODBCDBI.json │ ├── ROracle.json │ ├── RPostgreSQL.json │ ├── RPostgres.json │ ├── RPresto.json │ ├── RRedshiftSQL.json │ ├── RSQLServer.json │ ├── RSQLite.json │ ├── adbi.json │ ├── bigrquery.json │ ├── ckanr.json │ ├── connections.json │ ├── dittodb.json │ ├── duckdb.json │ ├── implyr.json │ ├── lazysf.json │ ├── noctua.json │ ├── odbc.json │ ├── pool.json │ ├── sergeant.json │ └── sparklyr.json ├── script └── prepare.R └── test-desc.txt /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/.github/workflows/sync.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/cleanup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/R/cleanup.R -------------------------------------------------------------------------------- /R/fetch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/R/fetch.R -------------------------------------------------------------------------------- /R/json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/R/json.R -------------------------------------------------------------------------------- /R/pull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/R/pull.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/README.md -------------------------------------------------------------------------------- /backends.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/backends.Rproj -------------------------------------------------------------------------------- /docs/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/all.json -------------------------------------------------------------------------------- /docs/by-package/AzureKusto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/AzureKusto.json -------------------------------------------------------------------------------- /docs/by-package/ClickHouseHTTP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/ClickHouseHTTP.json -------------------------------------------------------------------------------- /docs/by-package/DBI.RODBC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/DBI.RODBC.json -------------------------------------------------------------------------------- /docs/by-package/DBI.RPgSQL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/DBI.RPgSQL.json -------------------------------------------------------------------------------- /docs/by-package/DatabaseConnector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/DatabaseConnector.json -------------------------------------------------------------------------------- /docs/by-package/MonetDB.R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/MonetDB.R.json -------------------------------------------------------------------------------- /docs/by-package/MonetDBLite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/MonetDBLite.json -------------------------------------------------------------------------------- /docs/by-package/RAthena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RAthena.json -------------------------------------------------------------------------------- /docs/by-package/RClickhouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RClickhouse.json -------------------------------------------------------------------------------- /docs/by-package/RH2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RH2.json -------------------------------------------------------------------------------- /docs/by-package/RJDBC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RJDBC.json -------------------------------------------------------------------------------- /docs/by-package/RMariaDB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RMariaDB.json -------------------------------------------------------------------------------- /docs/by-package/RMySQL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RMySQL.json -------------------------------------------------------------------------------- /docs/by-package/RODBCDBI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RODBCDBI.json -------------------------------------------------------------------------------- /docs/by-package/ROracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/ROracle.json -------------------------------------------------------------------------------- /docs/by-package/RPostgreSQL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RPostgreSQL.json -------------------------------------------------------------------------------- /docs/by-package/RPostgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RPostgres.json -------------------------------------------------------------------------------- /docs/by-package/RPresto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RPresto.json -------------------------------------------------------------------------------- /docs/by-package/RRedshiftSQL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RRedshiftSQL.json -------------------------------------------------------------------------------- /docs/by-package/RSQLServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RSQLServer.json -------------------------------------------------------------------------------- /docs/by-package/RSQLite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/RSQLite.json -------------------------------------------------------------------------------- /docs/by-package/adbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/adbi.json -------------------------------------------------------------------------------- /docs/by-package/bigrquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/bigrquery.json -------------------------------------------------------------------------------- /docs/by-package/ckanr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/ckanr.json -------------------------------------------------------------------------------- /docs/by-package/connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/connections.json -------------------------------------------------------------------------------- /docs/by-package/dittodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/dittodb.json -------------------------------------------------------------------------------- /docs/by-package/duckdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/duckdb.json -------------------------------------------------------------------------------- /docs/by-package/implyr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/implyr.json -------------------------------------------------------------------------------- /docs/by-package/lazysf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/lazysf.json -------------------------------------------------------------------------------- /docs/by-package/noctua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/noctua.json -------------------------------------------------------------------------------- /docs/by-package/odbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/odbc.json -------------------------------------------------------------------------------- /docs/by-package/pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/pool.json -------------------------------------------------------------------------------- /docs/by-package/sergeant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/sergeant.json -------------------------------------------------------------------------------- /docs/by-package/sparklyr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/docs/by-package/sparklyr.json -------------------------------------------------------------------------------- /script/prepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/script/prepare.R -------------------------------------------------------------------------------- /test-desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-dbi/backends/HEAD/test-desc.txt --------------------------------------------------------------------------------