gpt4 book ai didi

RJDBC:R 到 Oracle 不能删除或删除表

转载 作者:行者123 更新时间:2023-12-01 13:51:40 25 4
gpt4 key购买 nike

我正在使用 RJDBC 连接到本地数据库。这使我可以使用 dbGetQuery 轻松进行 SELECT 查询,并使用 dbWriteTable 创建 TABLE。

但是,我无法找到直接从我的 R 控制台删除表或删除或选择进入的方法。当我直接在 SQL Developer 中执行这些操作时,这些操作有效,但当我将查询从 R 传递到数据库时则无效。

如何使用 R 执行不是 SELECT 语句的数据库记录操作?

最佳答案

我会尝试使用不同的类型。dbGetQuery 以查找和遍历数据库而不是操作它的记录为基础。问过类似问题before;我找不到很好的 R 示例,但如果有帮助,可以找到一个很好的 java 示例 here:

编辑:

我找到了我正在谈论的类型!无论如何,我花了一段时间 - sqlQuery 允许您运行几乎任何查询,即 - 数据库记录中的更改。我从 this 修改的示例来源:

res <- sqlQuery(con1,"DELETE TABLE TESTDATA", errors=FALSE) 
# res will now hold the result of the query.
# -1 means error, otherwise iteration is sucessful, and it will hold the number of rows affected.
if (res == -1){ #if something messed up
cat ("An error has occurred.\n")
msg <- odbcGetErrMsg(con1) #Use your connection for this.
print (msg)
} else {
cat ("Table was deleted successfully.\n")
}

编辑 2:

我把它与 RODBC 混淆了,但是没有理由担心,因为我也找到了 RJDBC 的替代品!它称为 dbSendUpdate。示例:

# Assuming you have the connection saved as conn; these example shows how to use dbSendUpdate to create tables and insert values.
# You could use it with every non-selective query, that is, which manipulates the record (update,delete,insert,drop etc.)
# create table, with dbSendUpdate:
dbSendUpdate(conn, "CREATE TABLE foo(a INT,b VARCHAR(100))")
# insert value, bind parameters to placeholders in statement:
dbSendUpdate(conn, "INSERT INTO foo VALUES(?,?)", 42, "bar")
# feel free to modify the query itself, these are just example values.

关于RJDBC:R 到 Oracle 不能删除或删除表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31796649/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com