Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
Change-Id: I6f2a32bc621683712a2d4304abc2ec5fac32b2ef
  • Loading branch information
JasperSch committed Jan 30, 2025
1 parent 1aeb522 commit 3189d3d
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions editbl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Advanced examples can be found in the [vignettes](https://github.com/openanalyti
* Tackles challenges such as enforcing foreign keys and hiding of surrogate keys.
* Transactional commits (currently for `tbl_dbi` class and non in-place editing).
* Default values for new rows (UUID's, 'current date', 'inserted by', ...)
* Possible to set row level security

### Constraints and normalized tables

Expand Down Expand Up @@ -113,15 +114,6 @@ modifiedData <- editbl::eDT(dplyr::tbl(conn, "Artist"), in_place = TRUE)
DBI::dbDisconnect(conn)
unlink(tmpFile)
# excel integration
xlsx_file <- system.file("extdata",
"artists.xlsx",
package="editbl")
xlsx_tbl <- tibble::as_tibble(
openxlsx::read.xlsx(xlsx_file)
)
modified <- eDT(xlsx_tbl)
openxlsx::write.xlsx(modified, xlsx_file)
```

Note that there are some custom methods in the package itself for `rows_update` / `rows_delete` / `rows_insert`. The goal
Expand Down

0 comments on commit 3189d3d

Please sign in to comment.