-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
36 lines (36 loc) · 1.12 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Package: DBIExt
Type: Package
Title: Extentsion for DBI; new Generics
Version: 0.1.0
Author: Bruce Curtis Schardt
Maintainer: Bruce Curtis Schardt <[email protected]>
Description: A DBI Extention Package toExplore useful new generics. Speciffically to introduce dbUpdateTable.
dbUpdateTable implements a generally applicable method to update selected columns of a database table by
values in a data-frame. The data-frame is written to a temporary table in the database and the update is performed using
an UPDATE table, inner join. This join method generally very fast. Using R to prepare the date for updating into the table
is also very paowerful.
License: MIT
URL: http://github.com/schardtbc/DBIExt
BugReports: http://github.com/schardtbc/DBIExt/issues
Depends:
R (>= 3.2.0)
Imports:
DBI (>= 1.0),
dplyr
LazyData: true
RoxygenNote: 6.1.1
Collate:
'DBIExt.R'
'delete-records.R'
'drop-table.R'
'hidden.R'
'sql-generation.R'
'table-indexing.R'
'table-replace.R'
'table-update.R'
VignetteBuilder: knitr
Encoding: UTF-8
Suggests:
knitr,
rmarkdown,
testthat