Skip to content

Commit 8ff3647

Browse files
committed
Simplify linking to functions
1 parent 57af31e commit 8ff3647

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ devtools::install_github("kwb-r/kwb.db", dependencies = TRUE)
1919
## Database Access in RODBC
2020

2121

22-
With the RODBC package, you need to open a database connection, send one or more requests to the database and finally close the dabase connection.
22+
With the RODBC package, you need to open a database connection, send one or more requests to the database and finally close the database connection.
2323

2424
## Database Access with this package
2525

2626

2727
With the functions of this package it is not needed to open and close a database connection explicitly; this is done behind the scenes in the functions. Instead of a database connection the path to the database file needs to be passed to the functions as an argument.
2828

29-
The main functions are [`hsGetTable()`](https://kwb-r.github.io/kwb.db/reference/hsGetTable.html) and [`hsPutTable()`](https://kwb-r.github.io/kwb.db/reference/hsPutTable.html). They transfer data from a database to a data frame in R and save data from a data frame in R into a new table in a database, respectively.
29+
The main functions are `hsGetTable()` and `hsPutTable()`. They transfer data from a database to a data frame in R and save data from a data frame in R into a new table in a database, respectively.
3030

31-
Use [`hsTables()`](https://kwb-r.github.io/kwb.db/reference/hsTables.html) to get a list of tables that are available in a database and [`hsFields()`](https://kwb-r.github.io/kwb.db/reference/hsFields.html) to get a list of table fields that are contained in a database table.
31+
Use `hsTables()` to get a list of tables that are available in a database and `hsFields()` to get a list of table fields that are contained in a database table.
3232

3333
A general workflow could look like this:
3434

@@ -54,4 +54,4 @@ kwb.db::hsPutTable(mdb, data_new, "fancy_table")
5454

5555
In each of the `kwb.db::`-function calls above a database connection is opened, a request to the database is sent and the connection is closed again. Thus, the user does not have to care about open database connections.
5656

57-
Take care when getting time series data from an MS Access database, see therefore [`hsMdbTimeSeries()`](https://kwb-r.github.io/kwb.db/reference/hsMdbTimeSeries.html).
57+
Take care when getting time series data from an MS Access database, see therefore `hsMdbTimeSeries()`.

0 commit comments

Comments
 (0)