ThingEngineer / PHP-MySQLi-Database-Class

Wrapper for a PHP MySQL class, which utilizes MySQLi and prepared statements.
Other
3.3k stars 1.34k forks source link

VARBINARY data type update not working #1005

Closed kzolee1 closed 1 day ago

kzolee1 commented 1 year ago

Used method:

$data = Array ('columname' => $_POST['form_columname'] );
$db->where('id', $var);
$db->update('table', $data);

There is no error message, but the table update doesn't happen, if i have VARBINARY type of column.

The get method works as expected.