Problem: ALTER TABLE with Jet as provider - Mailing list pgsql-general

From Chetan
Subject Problem: ALTER TABLE with Jet as provider
Date
Msg-id e_X29.272514$WJf1.135895@news01.bloor.is.net.cable.rogers.com
Whole thread Raw
List pgsql-general
Hello,

I have this problem where I want to rename a field in a table in my Access
DB and then move it before another field in the same table.  This is proving
to be very difficult because the ALTER TABLE command in the Jet engine
doesn't allow you to MOVE or RENAME any of the fields!

here's my code:

        'I want to delete the old field date and replace it with the
temporary one

        'move the temporary field before the field I want to remove <-- this
doesn't work
        cnn.Execute "ALTER TABLE MyTable MOVE TempField BEFORE OldField"

        'delete the field I want to remove
        cnn.Execute "ALTER TABLE MyTable DROP COLUMN OldField"

        'rename the temporary field to "NewField" <--this doesn't work
either
        cnn.Execute "ALTER TABLE MyTable RENAME TempField TO NewField"

I think the ALTER TABLE command is great in SQL and it would be great if I
could use it with the MSJet engine for everything but it doesn't look like I
can.

Does anyone have any suggestions?

Chetan
progrocker@rogers.com



pgsql-general by date:

Previous
From: Jeff Davis
Date:
Subject: Re: URGENT: Database keeps crashing - suspect damaged RAM
Next
From: "C. Miller"
Date:
Subject: List of user-created tables?