4

测试 dbplyr 和与数据库的连接,并获得以双精度形式返回的日期

con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")

df.in <- data.frame(count = c(1:2),Date = as.Date(rep(0,2), origin = "1900-
01-01"),stringsAsFactors = FALSE)
str(df.in)
# 'data.frame': 2 obs. of  2 variables:
#  $ count: int  1 2
#  $ Date : Date, format: "1900-01-01" "1900-01-01"

DBI::dbWriteTable(con, "df.in", df.in, overwrite=TRUE)
df.out<- dplyr::tbl(con, "df.in") 
str(df.out)
# List of 2
#  $ src:List of 2
#   ..$ con  :Formal class 'SQLiteConnection' [package "RSQLite"] with 6 
slots
#   .. .. ..@ ptr                :<externalptr> 
#   .. .. ..@ dbname             : chr ":memory:"
#   .. .. ..@ loadable.extensions: logi TRUE
#   .. .. ..@ flags              : int 70
#   .. .. ..@ vfs                : chr ""
#   .. .. ..@ ref                :<environment: 0x00000000137b7dc0> 
#   ..$ disco: NULL
#   ..- attr(*, "class")= chr [1:3] "src_dbi" "src_sql" "src"
#  $ ops:List of 2
#   ..$ x   :Classes 'ident', 'character'  chr "df.in"
#   ..$ vars: chr [1:2] "count" "Date"
#   ..- attr(*, "class")= chr [1:3] "op_base_remote" "op_base" "op"
#  - attr(*, "class")= chr [1:4] "tbl_dbi" "tbl_sql" "tbl_lazy" "tbl"

df.out
# Source:   table<df.in> [?? x 2]
# Database: sqlite 3.19.3 [:memory:]
#   count   Date
#   <int>  <dbl>
# 1     1 -25567
# 2     2 -25567

a) df.out 是一个列表。查看返回的基础数据的最佳方法是什么,即 data.frame 或 tbl 格式的计数和日期

b)为什么返回双精度而不是日期

c)当我遇到这个问题时,我无法复制我的初始问题(使用 MS SQL 服务器连接),即在数据上使用 dplyr 代码时 - 其中 gameDate 已被确认为日期字段 - 进行突变我收到这个错误

df.out %>%
  mutate(month=months(gameDate))

# nanodbc/nanodbc.cpp:1587: 42000: [Microsoft][SQL Server Native Client 
11.0][SQL Server]'MONTHS' is not a recognized built-in function name. 

有没有办法解决。我认为 dbplyr 将 dplyr 代码翻译成适当的 SQL

TIA 就上述任何一点寻求帮助

4

1 回答 1

1

这是因为,截至今天,months()向量函数还没有针对 MSSQL 的翻译dbplyr。翻译工作的好处是它可以让你dplyr调用数据库本地命令,在 MSSQL 中,DATENAME 函数应该满足你的需要。此代码应该可以工作:

df.out %>% mutate(month=datename(month, gameDate))

于 2017-08-28T23:57:14.423 回答