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!

create table type

Status
Not open for further replies.

patweb

Programmer
Apr 17, 2003
174
BE
Code:
strSQL1 = "CREATE TABLE [T-TEMP-PWDFRAME] (PWDON TEXT(1), PWDFRAME TEXT(255), FRMNAME TEXT(255));"
DoCmd.RunSQL strSQL1

a minor flaw, I create a table, but the field PWDON is in fact a boolean and not a text. If I use text it is still working (represented true by -1), but does there exist a type in create table for boolean ? I typed boolean, but its not recognized.

regards, pat.
 
I should work, the content to put into the created table is coming from a query, here is the field YESNO available.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top