In my MS SQL 2005 database schema, the field "RRates" is a bit field.
I have tried to supply False, both as a string and a Python boolean
and neither seems to create an acceptable SQL insert statement.
dat = dict(
RRates = 0, # 0, "0", False, "False" all dont work
)
ke_contracts.insert().execute(dat)