parkfairfax
Programmer
I am using a sql statement to create a table at runtime in my access database.
strSQL2 = "create table test_new ([ID Number] Integer, Title text(255), [Report Number] text(50), [Date] date, [On CD] logical, Collection text(10));"
The field [On CD] is my logical field. This works fine; however; I am stuck with 0/-1 as my true false choices, and I really want a yes/no format. I cannot find the format code to add to my sql string.
Does anyone have the answer for me?
strSQL2 = "create table test_new ([ID Number] Integer, Title text(255), [Report Number] text(50), [Date] date, [On CD] logical, Collection text(10));"
The field [On CD] is my logical field. This works fine; however; I am stuck with 0/-1 as my true false choices, and I really want a yes/no format. I cannot find the format code to add to my sql string.
Does anyone have the answer for me?