michelle
Jan 11th, 2000, 04:06 PM
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.
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.