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.
RODBCでは、独自の SQL 文字列を作成する代わりにsqlUpdate(channel, dat, ...)渡すことができるような関数がありました。dat = data.frame(...)
sqlUpdate(channel, dat, ...)
dat = data.frame(...)
ただし、R のDBIdbSendQuery(conn, statement, ...)では、文字列のみを受け取り、直接statement指定する機会を与えないような関数しか表示されません。data.frame
dbSendQuery(conn, statement, ...)
statement
data.frame
では、DBIをUPDATE使用する方法は?data.frame
UPDATE