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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Make Table with Boolean Field

Status
Not open for further replies.

RonMcNatt

Technical User
May 22, 2002
32
US
I am trying to use the following SQL statement to create a table. All fields are fine, except for the BOOLEAN type. Everytime I try to add these fields I get an error. I must be defining the boolean field incorrectly, but I can't find any "correct" examples.

Any help would be apprecriated.



sqlString = "CREATE TABLE modCBX "
sqlString = sqlString & "(SLIC TEXT(5), DEL_DATE DATETIME, INFO TEXT(24), OVERSIZED BOOLEAN, IRREG BOOLEAN );"

Set cnn = CurrentProject.Connection
cnn.Execute sqlString
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top