vote up -1 vote down star
1

Okay so I started with a question and have made a lot of changes to the code based on suggestions from this site and others so I figured I should create a new question.

Even though my code is shorter and more efficient the same problem persists; I am using a string called strSQL that contains and INSERT statement that I want executed. I have a FOR EACH loop that goes through each control on my MSAcess form (ensures they are either a text box, drop down list or checkbox) and determines if the field has been changed. If it has it generates a query string to log the change -- and stores it in strSQL.

The problem is that the same query is being executed again and again. I have added a DEBUG.PRINT statement before and after the line that executes the query string and the debugger shows that the string has CHANGED! Yes you read that right, this seems to be impossible but I have taken screenshots.

Firstly my code:

Private Sub Form_BeforeUpdate(Cancel As Integer)
    Dim C As Control
    For Each C In Controls
        Select Case C.ControlType
            Case acTextBox, acComboBox, acCheckBox
                Dim strOriginalValue, strCurrentValue, strSQL As String

                strOriginalValue = IIf(IsNull(C.OldValue), "", IIf(C.OldValue = vbTrue Or C.OldValue = vbFalse, IIf(C.OldValue = vbTrue, "Yes", "No"), C.OldValue))
                strCurrentValue = IIf(IsNull(C.Value), "", IIf(C.Value = vbTrue Or C.Value = vbFalse, IIf(C.Value = vbTrue, "Yes", "No"), C.Value))

                If strOriginalValue <> strCurrentValue Then
                    strSQL = "INSERT INTO fringefestival_changes (change_time,change_admin,action_taken,user_affected,year_affected,field_affected,type_affected,old_value,new_value) VALUES (NOW(),'" & ThisUserName() & "','Edit'," & [id] & ",0,'" & C.ControlSource & "','Administrator','" & Replace(strOriginalValue, "'", "") & "','" & Replace(strCurrentValue, "'", "") & "')"
                    Debug.Print "Before: " & strSQL
                    CurrentDb.Execute strSQL, dbFailOnError
                    Debug.Print "After: " & strSQL
                End If
        End Select
    Next
End Sub

Here is the results of the debugger:

Before: INSERT INTO fringefestival_changes (change_time,change_admin,action_taken,user_affected,year_affected,field_affected,type_affected,old_value,new_value) VALUES (NOW(),'ajohnson','Edit',3,0,'indoor_performers_tab','Administrator','No','Yes')
After: INSERT INTO fringefestival_changes (change_time,change_admin,action_taken,user_affected,year_affected,field_affected,type_affected,old_value,new_value) VALUES (NOW(),'ajohnson','Edit',3,0,'indoor_performers_tab','Administrator','No','Yes')
Before: INSERT INTO fringefestival_changes (change_time,change_admin,action_taken,user_affected,year_affected,field_affected,type_affected,old_value,new_value) VALUES (NOW(),'ajohnson','Edit',3,0,'volunteers_tab','Administrator','No','Yes')
After: INSERT INTO fringefestival_changes (change_time,change_admin,action_taken,user_affected,year_affected,field_affected,type_affected,old_value,new_value) VALUES (NOW(),'ajohnson','Edit',3,0,'volunteers_tab','Administrator','No','Yes')

Secondly my screenshots... firstly the debugger: 1 & 2 and secondly the results: here -- note that the debugger is too wide so I took two screenshots and the results have a row colored out as it has nothing to do with this problem.

Note that the only column that should be different in the example I gave should be the "field_affected" column

flag
Please point out exactly where there is a difference in the before and after SQL strings. You have two before and after sets, and these are different to each other, but the befores are the same as the afters, as far as I can see. – Remou Dec 28 '08 at 23:51
Good point, edited. – Andrew G. Johnson Dec 28 '08 at 23:54
PS You can simplify: strOriginalValue = IIf(C.OldValue = vbTrue Or C.OldValue = vbFalse, _ Format(C.OldValue, "Yes/No"), Nz(C.OldValue, "")) – Remou Dec 28 '08 at 23:54
Please do not use screen shots, please show in your text the difference between before and after that concerns you - I can only see SQL output as requested in the code. – Remou Dec 28 '08 at 23:58
Remou - results have been added as text – Andrew G. Johnson Dec 29 '08 at 0:03
show 6 more comments

8 Answers

vote up 1 vote down

Is the form in question bound to a datasource? This is the most common way that Access would be used, and if it were you probbaly wouldn't need to update via SQL.

Form_BeforeUpdate() is usually used when a form is bound to a datasource. You wouldn't normally use this event to determine if controls' values have changed and need writing back to the DB...

link|flag
Yes I am only using MSAccess as a front end -- all data is stored on a SQL Server database. What would you suggest I do in this situation? – Andrew G. Johnson Dec 29 '08 at 0:15
Also I am using ODBC to connect to the database if that wasn't already apparent... – Andrew G. Johnson Dec 29 '08 at 0:18
If the form and its controls are bound to a datasource (which is in term a query based on your linked tables), you probably don't need to write any code (unless you want to intercept and chnage values before writing) in order to save changed info... – Mitch Wheat Dec 29 '08 at 0:29
You're saying I should use a trigger I assume. I originally went down that path but decided against it as I need to log the active directory username of the person making the change (return value of ThisUserName()) and couldn't do that via a trigger. – Andrew G. Johnson Dec 29 '08 at 0:31
What are you actually trying to achieve? Big picture wise... – Mitch Wheat Dec 29 '08 at 0:32
show 5 more comments
vote up 1 vote down

If you can goto the specific SQL Server table (using Query Analyzer or Enterprise Mgr) & see whether it works as you expect. I am doubting that linked table in VBA might be showing you incorrect picture.

Edit: If you have SQL Profiler, see what is being executed there to confirm your doubt of the same query getting executed.

link|flag
Wow, you're absolutely right. If I go right into SQL Server the data is correct. I actually laughed out loud when I saw this, now the question is: why doesn't it display properly in MS Access? – Andrew G. Johnson Dec 29 '08 at 2:37
Not sure about that part. But, I have observed this even when working inside Access. And, I thought of writing it after your reply of query being printed in Debug window correctly :) – shahkalpesh Dec 29 '08 at 3:58
vote up 0 vote down

You run those querys against currentdb (wich I assume is the access-db) but are in fact using a SQL server database where you want the changes to happend?

Are those tables in the sql server linked to tables in the access-db or what method are you using?

link|flag
Yes they are linked tables to the SQL Server database. – Andrew G. Johnson Dec 29 '08 at 0:26
Are you sure that the links points to the database you think? I have many times made the mistake (when switching between different dev/deploy-servers) that looking in wrong database, thinking Im working on my local DB but actually running against another. – Stefan Dec 29 '08 at 0:33
No I am sure, not only is there only one database running this schema but even if I was connecting to the wrong one I would still not be having this error because of it. – Andrew G. Johnson Dec 29 '08 at 0:42
It "could" manifest itself like that if the "other" db has only those two records already and never being updated only shows them.. But OK, if you ruled that out then we have to check other possibilities – Stefan Dec 29 '08 at 0:54
vote up 0 vote down

Have you checked the table for broken triggers? It's a long shot, but some very very odd problems have been caused by bad/broken triggers before, and they're hard to understand before you notice the trigger...

link|flag
No triggers on this entire database, but a valid suggestion. – Andrew G. Johnson Dec 29 '08 at 0:35
vote up 0 vote down

In your BeforeUpdate event, you should determine which (if any) controls have changed and only execute the write-to-changes table ONCE outside the loop over all the form's controls. Otherwise you are going to get so many change events! Why not create a copy of the target table, blah_history, without FKs and simply write the changed record to it?

link|flag
vote up 0 vote down

Fixed by adding an auto-incrementing integer primary key column to the changes table.

Silly Access...

link|flag
No, silly Andrew G. Johnson for not knowing how to design an Access application. If you gave any thought to how ODBC has to work, you'd realize that a primary key is essential on all tables, and that a time stamp field is required to keep data in a bound form refreshed. – David W. Fenton Jan 2 '09 at 2:50
Silly ODBC* -- why do you think its intelligent to have all these extra unneeded worries? – Andrew G. Johnson Jan 2 '09 at 4:36
vote up -1 vote down

Ah, you're using SQL Server too. I have had very good luck with using triggers to audit data changes behind Access. There are a couple of quirks, but linking the tables via ODBC using trusted authentication makes it very easy.

OK, so you can't or don't want to use triggers. When front-ending SQL with Access, I usually use ADO objects in my VBA code for this sort of thing. Linked tables with ODBC are great for bound forms, but nothing beats ADO for going directly to the SQL Server.

Would you like more information about linking the tables using trusted authentication or help with using ADO to do the work with SQL Server?

link|flag
vote up -1 vote down

I have to say the discussion around this question drives me crazy. With ODBC linked tables, you start with bound forms. There is simply no reason to be using pooled connections. If you are hostile to the Access implementation of how to do these things STOP USING ACCESS.

--
David W. Fenton
David Fenton Associates

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.