I am creating a access database programatically using c# .
in one of the table i want a coloumn of type boolean / bool / Yes/No.
Can any body help ?
OleDbCommand xCommand = new OleDbCommand
("CREATE TABLE xEntityParam(xName char(255) ,xKey ???????? )", xConnection);
xCommand.ExecuteNonQuery();
I am using OLEDB.
I prefer not to use ADOX, that will be my next option.