Description Usage Arguments Value Examples
dbTransaction
is used to switch the data from the normal auto-commiting mode into transactional mode. Here, changes to the database will not be permanent until dbCommit
is called. If the changes are not to be kept around, you can use dbRollback
to undo all the changes since dbTransaction
was called.
1 | dbTransaction(conn, ...)
|
conn |
A MonetDB.R database connection. Created using |
... |
Future use. |
Returns TRUE
if the transaction command was successful.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
conn <- dbConnect(MonetDB.R(), "monetdb://localhost/acs")
dbSendUpdate(conn, "CREATE TABLE foo(a INT,b VARCHAR(100))")
dbTransaction(conn)
dbSendUpdate(conn, "INSERT INTO foo VALUES(?,?)", 42, "bar")
dbCommit(conn)
dbTransaction(conn)
dbSendUpdate(conn, "INSERT INTO foo VALUES(?,?)", 43, "bar")
dbRollback(conn)
# only 42 will be in table foo
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.