forked from tidyverse/dbplyr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDESCRIPTION
123 lines (123 loc) · 2.76 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
Type: Package
Package: dbplyr
Title: A 'dplyr' Back End for Databases
Version: 1.4.2
Authors@R:
c(person(given = "Hadley",
family = "Wickham",
role = c("aut", "cre"),
email = "[email protected]"),
person(given = "Edgar",
family = "Ruiz",
role = "aut"),
person(given = "RStudio",
role = c("cph", "fnd")))
Description: A 'dplyr' back end for databases that allows you to
work with remote database tables as if they are in-memory data frames.
Basic features works with any database that has a 'DBI' back end; more
advanced features require 'SQL' translation to be provided by the
package author.
License: MIT + file LICENSE
URL: https://dbplyr.tidyverse.org/, https://github.com/tidyverse/dbplyr
BugReports: https://github.com/tidyverse/dbplyr/issues
Depends:
R (>= 3.1)
Imports:
assertthat (>= 0.2.0),
DBI (>= 1.0.0),
dplyr (>= 0.8.0),
glue (>= 1.2.0),
methods,
purrr (>= 0.2.5),
R6 (>= 2.2.2),
rlang (>= 0.2.0),
tibble (>= 1.4.2),
tidyselect (>= 0.2.4),
utils
Suggests:
bit64,
covr,
knitr,
Lahman,
nycflights13,
RMariaDB (>= 1.0.2),
rmarkdown,
RMySQL (>= 0.10.11),
RPostgreSQL (>= 0.4.1),
RSQLite (>= 2.1.0),
testthat (>= 2.0.0),
withr (>= 2.1.2)
VignetteBuilder:
knitr
Encoding: UTF-8
Language: en-gb
LazyData: yes
Roxygen: list(markdown = TRUE)
RoxygenNote: 6.1.1
Collate:
'utils.R'
'sql.R'
'escape.R'
'translate-sql-quantile.R'
'translate-sql-string.R'
'translate-sql-paste.R'
'translate-sql-helpers.R'
'translate-sql-window.R'
'translate-sql-conditional.R'
'backend-.R'
'backend-access.R'
'backend-hive.R'
'backend-impala.R'
'backend-mssql.R'
'backend-mysql.R'
'backend-odbc.R'
'backend-oracle.R'
'backend-postgres.R'
'backend-sqlite.R'
'backend-teradata.R'
'build-sql.R'
'data-cache.R'
'data-lahman.R'
'data-nycflights13.R'
'dbplyr.R'
'explain.R'
'ident.R'
'lazy-ops.R'
'memdb.R'
'partial-eval.R'
'query-join.R'
'query-select.R'
'query-semi-join.R'
'query-set-op.R'
'query.R'
'remote.R'
'schema.R'
'simulate.R'
'sql-build.R'
'sql-expr.R'
'src-sql.R'
'src_dbi.R'
'tbl-lazy.R'
'tbl-sql.R'
'test-frame.R'
'testthat.R'
'translate-sql-clause.R'
'translate-sql.R'
'utils-format.R'
'verb-arrange.R'
'verb-compute.R'
'verb-copy-to.R'
'verb-distinct.R'
'verb-do-query.R'
'verb-do.R'
'verb-filter.R'
'verb-group_by.R'
'verb-head.R'
'verb-joins.R'
'verb-mutate.R'
'verb-pull.R'
'verb-select.R'
'verb-set-ops.R'
'verb-summarise.R'
'verb-window.R'
'zzz.R'