ACC2000: Action Query Commits Changes to Data When CancelledID: Q208184
|
Novice: Requires knowledge of the user interface on single-user computers.
When you run an action query and respond to the prompt to commit the changes by clicking No, the changes are committed anyway.
The action query's UseTransaction property is set to No.
Set the UseTransaction property to Yes before running the action query.
The UseTransaction property specifies whether an action query runs as a single transaction. When the UseTransaction property is set to Yes, the query results are stored in a cache or temporary database and are not written into the current database until you confirm that you want to commit the changes. When the UseTransaction property is set to No, the results are written immediately to the current database; the query runs much faster because it is not wrapped in a single transaction. However, you cannot cancel the changes that the query has made, even if you click No when prompted to commit the changes.
If you create a query in the Microsoft Access user interface by opening a
new query in Design view, the default value of the UseTransaction property is Yes. However, when you use Data Access Objects (DAO) to create a QueryDef in Visual Basic for Applications code, the default value of the UseTransaction property is No.
In the following example, the procedure, CreateTransQuery, creates an
action query whose UseTransaction property is set to Yes:
The sample code in this article uses Microsoft Data Access
Objects. For this code to run properly, you need to reference
the Microsoft DAO 3.6 Object Library.
Option Explicit
Function CreateTransQuery()
Dim db As DAO.Database
Dim qd As DAO.QueryDef
Dim prpUseTrans As Property
Dim strSQLString As String
strSQLString = "UPDATE Categories SET Categories.CategoryName"
strSQLString = strSQLString & " = 'Drinks' WHERE"
strSQLString = strSQLString & " Categories.CategoryID = 1;"
Set db = CurrentDb
Set qd = db.CreateQueryDef("qryUseTransTest", strSQLString)
Set prpUseTrans = qd.CreateProperty("UseTransaction", dbBoolean, True)
qd.Properties.Append prpUseTrans
End Function
CustomerID: CompanyName:
----------- --------------------
ALFKI Alfred's Futterkiste
Query: qryUpdateCustomers
-------------------------
Type: Update Query
Field: CustomerID
Criteria: "ALFKI"
Field: CompanyName
Update To: "Alfred's Co."
You are about to update 1 row(s).
Once you click Yes, you can't use the Undo command to reverse the
changes. Are you sure you want to update these records?
For more information about the UseTransaction property, in the Visual Basic Editor, click
Microsoft Visual Basic Help on the Help menu, type "UseTransaction property" in
the Office Assistant or the Answer Wizard, and then click Search to
view the topic.
Additional query words: prb
Keywords : kbusage GnlMu QryUpdat QryDel QryAppnd QryMktbl
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: May 13, 1999