I am trying to write a simple function to resize a text field in MS Access 64 bit version under Windows 7. It fails with the error 3420, object invalid or no longer set. Why is this? Can't you alter a table in code anymore under MS Access 64bit version?

Here is the code:

Private Function ResizeSingleTextField(sTableName As String, _
                                       sFieldName As String, _
                                       iLength As Integer)

    ResizeSingleTextField = False

    Dim sSQL As String

    sSQL = "ALTER TABLE " & sTableName & " " _
    & "ALTER COLUMN " & sFieldName & " " _
    & "TEXT (" & iLength & ")"

    CurrentDb.Execute (sSQL)

    ResizeSingleTextField = True
    Exit Function

End Function


Public Sub TestIt()

    Dim result As Boolean

    result = ResizeSingleTextField("GregTest", "MyTextField", 12)

    Debug.Print result

End Sub
link|improve this question

What line does it throw the error on? – JohnFx Sep 14 '11 at 3:10
It fails on the line CurrentDb.Execute(sSQL). See the other comment below. – Greg Finzer Sep 14 '11 at 11:29
It looks like this is an actual bug (since there's a hotfix for it), but your code bothers me. I'd not use CurrentDB, but instead assign the database object to a variable, and execute from that (which guarantees persistence, whereas using CurrentDB means the database object returned exists on that single line; shouldn't relevant here, but I'd still do it). Also, you should never all CurrentDB.Execute without the dbFailOnError switch and an error handler. – David-W-Fenton Sep 15 '11 at 19:15
Dave, thanks for the suggestions. – Greg Finzer Sep 16 '11 at 11:17
feedback

2 Answers

up vote 1 down vote accepted

It's a known bug in that version of Access. See MS Knowledge Base Article 2516493.

Excerpted here:

Issue that this hotfix package fixes
Assume that you try to change the structure of a table by using a Data Definition Language (DDL) query and the ALTER TABLE statement in the 64-bit version of Microsoft Access 2010. The ALTER TABLE statement includes an ALTER COLUMN parameter. In this situation, you receive the following error message: Object invalid or no longer set. When you try to execute the DDL query through VBA code, you receive the following error message: Run-time error '3420': Object invalid or no longer set.

There is a hotfix that came out in April to remedy the issue. Access 2010 Runtime Service Pack 1 came out in August 2011, and according to the release notes includes a fix for this issue.

Access - "Object invalid or no longer set" error occurs when you try to use an ALTER TABLE query to change a field type or size.

link|improve this answer
Thanks John. That was it. – Greg Finzer Sep 16 '11 at 10:36
feedback

Sorry, no idea why that statement fails. See if it works when executed under ADO instead of DAO.

CurrentProject.Connection.Execute sSQL

If you haven't already installed Service Pack 1, see whether that changes the situation.

link|improve this answer
The table exists and the column exists. The column is 10 characters wide. I am resizing it to 12 characters wide. Both of these statements fail: CurrentDb.Execute("ALTER TABLE GregTest ALTER COLUMN MyTextField TEXT (12)") CurrentProject.Connection.Execute("ALTER TABLE GregTest ALTER COLUMN MyTextField TEXT (12)") – Greg Finzer Sep 14 '11 at 11:30
I am installing SP1 now – Greg Finzer Sep 14 '11 at 11:31
Did SP1 resolve the problem? – HansUp Sep 15 '11 at 2:34
I would avoid Office 2010 SP1 like the plague -- it has caused all sorts of bad problems for all sorts of people. – David-W-Fenton Sep 15 '11 at 19:13
Dave, SP1 worked. I am going to have one PC with SP1 and one without to see what problems are caused. Is there a list of the problems with SP1 somewhere? – Greg Finzer Sep 16 '11 at 10:51
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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