I've been trying to add (with script) a column to an access database. with the below script i can get the column added, but i can't adjust it's type:
ALTER TABLE archived ADD COLUMN arch_path NUMBER;
According to:
I just have to add the FIELD SIZE to get the appropriate number type. ("Set the FieldSize property to define the specific Number type. 1, 2, 4, or 8 bytes. 16 bytes for Replication ID (GUID) only.")
Rather dumb question, but what would the field size be for LONG INTEGER. What would I need to put in the (fieldsize)?
Thank you in advance for helping a troubled mind.
ALTER TABLE archived ADD COLUMN arch_path NUMBER;
According to:
I just have to add the FIELD SIZE to get the appropriate number type. ("Set the FieldSize property to define the specific Number type. 1, 2, 4, or 8 bytes. 16 bytes for Replication ID (GUID) only.")
Rather dumb question, but what would the field size be for LONG INTEGER. What would I need to put in the (fieldsize)?
Thank you in advance for helping a troubled mind.