Skip to content

Commit 10c6694

Browse files
docs: Update README
1 parent 4e380f5 commit 10c6694

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

README.Rmd

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff 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")
3743
The `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+
4050
library(DBI)
4151
4252
# Create an SQLite connection using the adbcsqlite backend

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff 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")
3137
The `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+
3444
library(DBI)
3545

3646
# Create an SQLite connection using the adbcsqlite backend

0 commit comments

Comments
 (0)