ThingEngineer / PHP-MySQLi-Database-Class

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

VARBINARY data type update not working #1005

Open kzolee1 opened 1 year 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.