|
-
Jan 11th, 2000, 05:06 PM
#1
Thread Starter
Hyperactive Member
Dear Vb programmers,
I try to create a boolean field in an access .
The next code I made:
Set Ws = DBEngine.Workspaces(0)
Set Db = Ws.CreateDatabase(DbSettings, dbLangGeneral)
SqlSel = "Create Table Customer ( Customer Text"
SqlSel = SqlSel + ", DatumM" + " boolean"
SqlSel = SqlSel + ");"
Db.Execute SqlSel 'creating a table
The boolean is not correct
What do I have to fill in? (You know also the syntax for autonumber?)
Nice greetings,
Michelle.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|