├── .Rbuildignore ├── .Rprofile ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── duckdb_connection.R ├── get_database_functions.R ├── list_drivers.R ├── mssql_connection.R ├── mysql_connection.R ├── postgres_connection.R ├── snowflake_connection.R ├── sqlite_connection.R ├── submit_query.R ├── table_modal_w_download.R ├── vertica_connection.R ├── view_csv.R └── view_database.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── images ├── Octopus logo large -4.png ├── octopusMainPage.png ├── octopusMainPage1.png ├── octopusMainPage2.png ├── octopusMainPage3.png ├── octopusQueryPage.png ├── octopus_logo.png ├── octopus_logo_2.png ├── octopuslogosmall.png ├── oi1.png ├── oi2.png └── oi3.png ├── man ├── list_drivers.Rd ├── view_csv.Rd └── view_database.Rd ├── octopus.Rproj ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf ├── tests ├── testthat.R └── testthat │ ├── test-duckdb_connection.R │ ├── test-list_drivers.R │ ├── test-mssql_connection.R │ ├── test-mysql_connection.R │ ├── test-postgres_connection.R │ ├── test-snowflake_connection.R │ ├── test-sqlite_connection.R │ ├── test-submit_query.R │ ├── test-table_modal_w_download.R │ ├── test-vertica_connection.R │ ├── test-view_csv.R │ └── test-view_database.R └── vignettes ├── .gitignore └── octopus.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: octopus authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/duckdb_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/duckdb_connection.R -------------------------------------------------------------------------------- /R/get_database_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/get_database_functions.R -------------------------------------------------------------------------------- /R/list_drivers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/list_drivers.R -------------------------------------------------------------------------------- /R/mssql_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/mssql_connection.R -------------------------------------------------------------------------------- /R/mysql_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/mysql_connection.R -------------------------------------------------------------------------------- /R/postgres_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/postgres_connection.R -------------------------------------------------------------------------------- /R/snowflake_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/snowflake_connection.R -------------------------------------------------------------------------------- /R/sqlite_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/sqlite_connection.R -------------------------------------------------------------------------------- /R/submit_query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/submit_query.R -------------------------------------------------------------------------------- /R/table_modal_w_download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/table_modal_w_download.R -------------------------------------------------------------------------------- /R/vertica_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/vertica_connection.R -------------------------------------------------------------------------------- /R/view_csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/view_csv.R -------------------------------------------------------------------------------- /R/view_database.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/R/view_database.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/cran-comments.md -------------------------------------------------------------------------------- /images/Octopus logo large -4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/Octopus logo large -4.png -------------------------------------------------------------------------------- /images/octopusMainPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopusMainPage.png -------------------------------------------------------------------------------- /images/octopusMainPage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopusMainPage1.png -------------------------------------------------------------------------------- /images/octopusMainPage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopusMainPage2.png -------------------------------------------------------------------------------- /images/octopusMainPage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopusMainPage3.png -------------------------------------------------------------------------------- /images/octopusQueryPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopusQueryPage.png -------------------------------------------------------------------------------- /images/octopus_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopus_logo.png -------------------------------------------------------------------------------- /images/octopus_logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopus_logo_2.png -------------------------------------------------------------------------------- /images/octopuslogosmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/octopuslogosmall.png -------------------------------------------------------------------------------- /images/oi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/oi1.png -------------------------------------------------------------------------------- /images/oi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/oi2.png -------------------------------------------------------------------------------- /images/oi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/images/oi3.png -------------------------------------------------------------------------------- /man/list_drivers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/man/list_drivers.Rd -------------------------------------------------------------------------------- /man/view_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/man/view_csv.Rd -------------------------------------------------------------------------------- /man/view_database.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/man/view_database.Rd -------------------------------------------------------------------------------- /octopus.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/octopus.Rproj -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-duckdb_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-duckdb_connection.R -------------------------------------------------------------------------------- /tests/testthat/test-list_drivers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-list_drivers.R -------------------------------------------------------------------------------- /tests/testthat/test-mssql_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-mssql_connection.R -------------------------------------------------------------------------------- /tests/testthat/test-mysql_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-mysql_connection.R -------------------------------------------------------------------------------- /tests/testthat/test-postgres_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-postgres_connection.R -------------------------------------------------------------------------------- /tests/testthat/test-snowflake_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-snowflake_connection.R -------------------------------------------------------------------------------- /tests/testthat/test-sqlite_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-sqlite_connection.R -------------------------------------------------------------------------------- /tests/testthat/test-submit_query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-submit_query.R -------------------------------------------------------------------------------- /tests/testthat/test-table_modal_w_download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-table_modal_w_download.R -------------------------------------------------------------------------------- /tests/testthat/test-vertica_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-vertica_connection.R -------------------------------------------------------------------------------- /tests/testthat/test-view_csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-view_csv.R -------------------------------------------------------------------------------- /tests/testthat/test-view_database.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/tests/testthat/test-view_database.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/octopus.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCodrescu/octopus/HEAD/vignettes/octopus.Rmd --------------------------------------------------------------------------------