How can I create a YES/NO column in my table?

M

michaaal

I use this code to create a table dynamically...

strSQL = "CREATE TABLE (FirstName TEXT(30), LastName TEXT(20));"
conn.execute(strSQL)


This will create two text columns. How can I create some YES/NO columns
instead of TEXT columns?
 
E

Egbert Nierop \(MVP for IIS\)

strSQL = "CREATE TABLE (FirstName TEXT(30), LastName TEXT(20), yesno
boolean);"
conn.execute(strSQL)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,434
Messages
2,571,691
Members
48,796
Latest member
Greg L.

Latest Threads

Top