I use binary uuids for keys. Is there a way to edit table data using the Mysql Workbench for this schema? I get:
UPDATE `db`.`table` SET `foo`='bar' WHERE `uuid`=?;
Which explicitly returns an error:
ERROR 0: Value not set for all parameters
I have no other way of referencing the lines I want to edit.
PhpMyAdmin fails as well while corrupting all binary data.
edit - for clarification, the data type of the actual keys is BINARY (16)
edit 2 - To clarify even more, this question concerns, in particular, MySQL Workbench. I understand the prepared statements.
edit 3 - I invest in this generosity in the hope that someone knows a workaround or solution.
source
share