Add a column

Never4Get

Registered User.
Local time
Today, 16:08
Joined
Aug 24, 2001
Messages
14
Now that I found a way to import a .dbf-file, I would like to insert a column in the resulting table. Could someone tell me how please???

Thanx in advance
 
this will add a column to the table.

Dim tableSQL As String
tableSQL = "Alter TABLE [" & tableName & "] ADD COLUMN COLUMN_NAME Integer;"
db.Execute (tableSQL)
 
Go to the Design view for the table and add a field.
 

Users who are viewing this thread

Back
Top Bottom