Hello,
It's possible to display in the grid, columns Varbinary with cast to char? And accept the char value and after convert to Varbinary when we save the row?
If I use PHP to call the row I haven't this "problem", I think the PHP auto transform the fields.
Sample:
Table structure CREATE TABLE usuarios ( usuarios_id SMALLINT(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Id', usuarios_login VARBINARY(255) NULL DEFAULT NULL COMMENT 'Login', PRIMARY KEY (usuarios_id) ) COMMENT='Usuários' COLLATE='latin1_swedish_ci' ;
What its good to show:
select usuarios_login, convert(usuarios_login, char(255)) from usuarios
Print Varbinary -> Char: