After updating to version 12.2.0.6581 I can not change data in columns of type bit. In the SQL-log the following statement is added
UPDATE test_db
.shoporderitem
SET SubscriptionCanceled
=b0 WHERE ShopOrderItemId
=27532;
And I get a message box with error: "SQL Error (1054): Unknown column 'b0' in field list" When my colleague changes the field in version 11.0.0.59.19 it works and the following statement is generated:
UPDATE test_db
.shoporderitem
SET SubscriptionCanceled
=b'0' WHERE ShopOrderItemId
=27532;
As you can see the value is different. Please look into this, thanks :)
Kind regards Terkel