Re: [Haskell-cafe] Takusen, postgres and boolean fields

2009-04-25 Thread Sasha Shipka
s better way to do it. On Sat, Apr 25, 2009 at 2:06 PM, Christoph Bauer wrote: > Sasha Shipka writes: > >> Let say one has to do something similar to this: >> >> execDML $ cmdbind (sql "update some_table set some_boolean_field = ? >> where ...") [bindP True

[Haskell-cafe] Takusen, postgres and boolean fields

2009-04-24 Thread Sasha Shipka
Let say one has to do something similar to this: execDML $ cmdbind (sql "update some_table set some_boolean_field = ? where ...") [bindP True, ...] When I do it, I have an error: DBError ("42","804") 7 "ERROR: 42804: column \"some_boolean_field\" is of type boolean but expression is of type tex