T
thomasp
I am attempting to create a table in an Access database using VB2005 beta 2.
I seem to be able to get it to work all except for adding a Boolean column.
The following statement works if I remove the ""POI BOL, " & _" line from
it. Will someone please tell me the snytax for adding a boolean column?
Thanks,
Thomas
AccessCommand.CommandText = "CREATE TABLE NewUTAMS (" & _
"ID int identity, " & _
"DTG datetime, " & _
"Grid TEXT (10), " & _
"confGrid TEXT (10), " & _
"POI BOL, " & _
"confSource TEXT (50), " & _
"Weapon_Type TEXT (50), " & _
"Target_NO TEXT (4), " & _
"EastError INT, " & _
"NorthError INT, " & _
"CONSTRAINT PrimaryKey PRIMARY KEY (ID))"
I seem to be able to get it to work all except for adding a Boolean column.
The following statement works if I remove the ""POI BOL, " & _" line from
it. Will someone please tell me the snytax for adding a boolean column?
Thanks,
Thomas
AccessCommand.CommandText = "CREATE TABLE NewUTAMS (" & _
"ID int identity, " & _
"DTG datetime, " & _
"Grid TEXT (10), " & _
"confGrid TEXT (10), " & _
"POI BOL, " & _
"confSource TEXT (50), " & _
"Weapon_Type TEXT (50), " & _
"Target_NO TEXT (4), " & _
"EastError INT, " & _
"NorthError INT, " & _
"CONSTRAINT PrimaryKey PRIMARY KEY (ID))"