The goal of dabr is to provide functions to manage databases: select, update, insert, and delete records, list tables, backup tables as CSV files, and import CSV files as tables.
You can install the released version of dabr from CRAN with:
And the development version from GitHub with:
Connecting to the Reading Palaeofire Database (RPD), locally installed under the name RPD-latest
:
Explore the database structure by listing the tables and their attributes:
dabr::list_tables(conn)
#>
#>
#> |charcoal |
#> |:-----------|
#> |ID_SAMPLE |
#> |quantity |
#> |sample_size |
#>
#>
#> |chronology |
#> |:------------------|
#> |ID_SAMPLE |
#> |original_age_model |
#> |original_est_age |
#> |BACON_INTCAL13_age |
#> |UNCERT_5 |
#> |UNCERT_25 |
#> |UNCERT_75 |
#> |UNCERT_95 |
#>
#>
#> |date_info |
#> |:----------------|
#> |ID_ENTITY |
#> |ID_DATE_INFO |
#> |material_dated |
#> |date_type |
#> |avg_depth |
#> |thickness |
#> |lab_number |
#> |age_C14 |
#> |age_calib |
#> |error |
#> |correlation_info |
#> |explanation |
#> |age_used |
#>
#>
#> |entity |
#> |:--------------------|
#> |ID_SITE |
#> |ID_ENTITY |
#> |entity_name |
#> |latitude |
#> |longitude |
#> |elevation |
#> |depositional_context |
#> |measurement_method |
#> |TYPE |
#> |source |
#> |core_location |
#> |last_updated |
#> |ID_UNIT |
#> |chron_source |
#>
#>
#> |entity_link_pub |
#> |:---------------|
#> |ID_ENTITY |
#> |ID_PUB |
#>
#>
#> |pub |
#> |:-----------|
#> |ID_PUB |
#> |citation |
#> |pub_DOI_URL |
#>
#>
#> |sample |
#> |:------------|
#> |ID_ENTITY |
#> |ID_SAMPLE |
#> |sample_depth |
#> |depth_top |
#> |depth_bottom |
#>
#>
#> |site |
#> |:----------------|
#> |ID_SITE |
#> |ID_SITE_GCDv4_WP |
#> |ID_SITE_GCDv3 |
#> |site_name |
#> |latitude |
#> |longitude |
#> |elevation |
#> |site_type |
#> |water_depth |
#> |basin_size_class |
#> |catch_size_class |
#> |flow_type |
#> |basin_size_km2 |
#> |catch_size_km2 |
#>
#>
#> |unit |
#> |:-------|
#> |ID_UNIT |
#> |UNIT |
ALWAYS! close your connection to the database (when you are done):