Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 dbGetQuery 在 SQL 服务器中获取和插入数据。我试图了解 dbGetQuery 默认情况下是否应用某种数据分类算法。
该对象 x <-dbGetQuery(dbhandle, SQL_stored_procedure) 返回一个数据框。我发现在某些情况下,数据库中的某些列被视为字符,而在另一种情况下则不同。数据类型在 SQL 中定义为 varchar(15)。
x <-dbGetQuery(dbhandle, SQL_stored_procedure)
这可能吗?有没有其他人遇到过类似的问题?