a hack to handle boolean items in VBA with MS Access.
authorHiroshi Inoue <h-inoue@dream.email.ne.jp>
Tue, 8 Nov 2016 22:54:56 +0000 (07:54 +0900)
committerHiroshi Inoue <h-inoue@dream.email.ne.jp>
Sat, 21 Jan 2017 08:21:14 +0000 (17:21 +0900)
commitf2898e7c2e39cfa69e09d45843a3afe9ba23faef
treea11a884acef0fb9a3c5d496e1b70aec47d42c644
parent86e2e7afa85ba049e7c9e3012dcc4e886c6109cd
a hack to handle boolean items in VBA with MS Access.
VBA seems to transform the where condition
a_boolean_item=True
into
("a_boolean_item" = 1)
which causes an ERROR:Operator does not exist boolean = integer .
Here transforms it into
("a_boolean_item"='1')
which seems safe in anyway.
convert.c