File tree Expand file tree Collapse file tree 2 files changed +23
-3
lines changed
Expand file tree Collapse file tree 2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,13 @@ Bringing [arrow-adbc](https://github.com/apache/arrow-adbc) to R via [DBI](https
2525
2626## Installation
2727
28- You can install the development version of adbi from [ GitHub] ( https://github.com/ ) with:
28+ Install the latest release of adbi from CRAN with the following code:
29+
30+ ``` r
31+ install.packages(" adbi" )
32+ ```
33+
34+ To get a bug fix or to use a feature from the development version, you can install the development version of adbi from GitHub:
2935
3036``` r
3137# install.packages("devtools")
@@ -37,6 +43,10 @@ devtools::install_github("r-dbi/adbi")
3743The ` data.frame ` API of DBI is supported.
3844
3945``` {r df}
46+ # To run this example, please install the adbcsqlite package first.
47+ #
48+ # install.packages("adbcsqlite")
49+
4050library(DBI)
4151
4252# Create an SQLite connection using the adbcsqlite backend
Original file line number Diff line number Diff line change @@ -18,8 +18,14 @@ database access.
1818
1919## Installation
2020
21- You can install the development version of adbi from
22- [ GitHub] ( https://github.com/ ) with:
21+ Install the latest release of adbi from CRAN with the following code:
22+
23+ ``` r
24+ install.packages(" adbi" )
25+ ```
26+
27+ To get a bug fix or to use a feature from the development version, you
28+ can install the development version of adbi from GitHub:
2329
2430``` r
2531# install.packages("devtools")
@@ -31,6 +37,10 @@ devtools::install_github("r-dbi/adbi")
3137The ` data.frame ` API of DBI is supported.
3238
3339``` r
40+ # To run this example, please install the adbcsqlite package first.
41+ #
42+ # install.packages("adbcsqlite")
43+
3444library(DBI )
3545
3646# Create an SQLite connection using the adbcsqlite backend
You can’t perform that action at this time.
0 commit comments