Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ Bringing [arrow-adbc](https://github.com/apache/arrow-adbc) to R via [DBI](https

## Installation

You can install the development version of adbi from [GitHub](https://github.com/) with:
Install the latest release of adbi from CRAN with the following code:

```r
install.packages("adbi")
```

To get a bug fix or to use a feature from the development version, you can install the development version of adbi from GitHub:

``` r
# install.packages("devtools")
Expand All @@ -37,6 +43,10 @@ devtools::install_github("r-dbi/adbi")
The `data.frame` API of DBI is supported.

```{r df}
# To run this example, please install the adbcsqlite package first.
#
# install.packages("adbcsqlite")

library(DBI)

# Create an SQLite connection using the adbcsqlite backend
Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@ database access.

## Installation

You can install the development version of adbi from
[GitHub](https://github.com/) with:
Install the latest release of adbi from CRAN with the following code:

``` r
install.packages("adbi")
```

To get a bug fix or to use a feature from the development version, you
can install the development version of adbi from GitHub:

``` r
# install.packages("devtools")
Expand All @@ -31,6 +37,10 @@ devtools::install_github("r-dbi/adbi")
The `data.frame` API of DBI is supported.

``` r
# To run this example, please install the adbcsqlite package first.
#
# install.packages("adbcsqlite")

library(DBI)

# Create an SQLite connection using the adbcsqlite backend
Expand Down