I'm working with an old Access database (yes, it's very ugly and I hate it). I need to modify some of the columns from a VB app that I'm creating. I have most the modifications setup correctly, but I'm fighting with the fact that modifying a column to text has it default to "Allow Zero Length" to false.
SO ALTER TABLE [Applicant Table] ALTER COLUMN [Applicant ID] Text(255)
I need that alter to have "Allow Zero Length" set to true.
I have tried ALTER TABLE [Applicant Table] ALTER COLUMN [Applicant ID] Text(255) NULL
but that doesn't seem to work either. I've looked all over for the solution, but can't seem to find a straight answer.
Any ideas?
Thanks, Ryan.