Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add Field Onto Access Table

Status
Not open for further replies.

GarstonMassive

Programmer
May 5, 2006
71
GB
Hi guys,

I'm trying to add a new field to a table in a local Access database. Is this possible and if so what's the syntax?

Thanks in advance.

 
Execute a DDL instruction like ALTER TABLE ... ADD COLUMN ...

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Thanks for your reply PHV. I'm actually an Access developer and I'm trying to do this in a VB Script which I know hardly anything about.

Can you give me a few more pointers please even if it's a link to more details.

Cheers.
 
How do you connect to your Access DB from VBScript ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
I have used some VB Script before to do something in the DB and this is how I connected:

Set objAccess = CreateObject("Access.Application")

objAccess.OpenCurrentDatabase "C:\Folder\MyDat.mdb"
Set db = objAccess.CurrentDB

Hope this helps.
 
You may try either:
objAccess.DoCmd.RunSQL "ALTER TABLE ... ADD COLUMN ..."
or:
db.Execute "ALTER TABLE ... ADD COLUMN ..."

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Thanks PHV I've got it to add a new column but not sure how to set a default value of zero to this Number type field.

A nudge in the right direction please.....
 
What's wrong with this syntax:


db.Execute "ALTER TABLE Table1 ADD COLUMN fldNumber LONG DEFAULT 0
 
phv,
if you have more than one column that you want to add, do you separate them with a comma? like this?
ALTER TABLE Table1 ADD COLUMN field1, field2, field3......
 
GarstonMassive,
JetSQL lacks the DEFAULT clause ...

if you have more than one column that you want to add
You may add only one column per alter table instruction.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top