merlynsdad
Programmer
I need a column with data type as a boolean. I had thought the correct data type was "yes/no", but apparently not, as vba won't make the table that way. Here's the SQL:
strSQL = "CREATE TABLE tblTemp_Event (location varchar(255), event_type integer, date_change yes/no);"
Debug.Print strSQL
db.Execute strSQL
What is the correct data type syntax for a boolean?
If the square peg won't fit in the round hole, sand off the corners.
strSQL = "CREATE TABLE tblTemp_Event (location varchar(255), event_type integer, date_change yes/no);"
Debug.Print strSQL
db.Execute strSQL
What is the correct data type syntax for a boolean?
If the square peg won't fit in the round hole, sand off the corners.