我正在尝试将RSQLite包添加到Imports而不是Depends in my package。在描述中我有:
Imports:
sqldf,
RPostgreSQL,
RSQLite
在NAMESPACE中有:
import(RPostgreSQL)
import(RSQLite)
import(sqldf)
但是当我加载我的包时它失败了:
> library(devtools)
> load_all()
Loading mondrianr
Loading required namespace: sqldf
Loading required namespace: tcltk
Loading required namespace: RPostgreSQL
> check()
...
check_table_exists: no visible global function definition for
'dbDriver'
prepare_infrastructure: no visible global function definition for
'dbDriver'
这将导致示例失败,因为dbDriver
是由RSQLite
导出的方法,但未加载RSQLite
命名空间。我试图添加@importMethodsFrom RSQLite dbDriver
,但结果是一样的。
我接下来应该尝试什么?