N Never4Get Registered User. Local time Today, 16:08 Joined Aug 24, 2001 Messages 14 Sep 10, 2001 #1 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
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
D disgruntled Registered User. Local time Today, 16:08 Joined Jul 3, 2001 Messages 38 Sep 10, 2001 #2 this will add a column to the table. Dim tableSQL As String tableSQL = "Alter TABLE [" & tableName & "] ADD COLUMN COLUMN_NAME Integer;" db.Execute (tableSQL)
this will add a column to the table. Dim tableSQL As String tableSQL = "Alter TABLE [" & tableName & "] ADD COLUMN COLUMN_NAME Integer;" db.Execute (tableSQL)
fmm Registered User. Local time Today, 10:08 Joined Mar 15, 2001 Messages 76 Sep 10, 2001 #3 Go to the Design view for the table and add a field.
N Never4Get Registered User. Local time Today, 16:08 Joined Aug 24, 2001 Messages 14 Sep 11, 2001 #4 Thanks digruntled, Your SQL-statement worked fine.