r - RODBC sqlSave(..., fast = FALSE) - "RODBCTypeInfo" not available for .Call() for package "RODBC" -
my sqlsave
query works perfectly fast = true
fails following error fast = false
(connecting ms .accdb
):
> db <- odbcconnectaccess2007(path_out) > sqlsave(db, df, "tbltest", rownames = f, append = t, fast = f) error in .call("rodbctypeinfo", attr(channel, "handle_ptr"), as.integer(type), : "rodbctypeinfo" not available .call() package "rodbc" > traceback() 4: .call("rodbctypeinfo", attr(channel, "handle_ptr"), as.integer(type), package = "rodbc") 3: sqltypeinfo(channel) 2: sqlwrite(channel, tablename, dat, verbose = verbose, fast = fast, test = test, nastring = nastring) 1: sqlsave(db, df, "tbltest", rownames = f, append = t, fast = f)
i don't understand error message myself, ideas why?
(i trying test how slower fast = false
be)
Comments
Post a Comment