Улучшенный модуль MySQL

Коментарии

How to do?
I try to "shift" JPEG-files and RAW-files into a LONG_BLOB-field in my database. When I use following:

$db = ... connect to MYSQL-database;
$dir = opendir($specialdirectory);
$filename = readdir($dir);
$handle = fopen($specialdirectory.$filename);
$picture = stream_get_contents($handle);
$sql = "INSERT INTO table SET xyz=.... , picture=`".$picture."`";
if (!$res = $db->query($sql)) { error handling .... 
// the field "picture" bounced against $picture
}

with:
$dump = bin2hex($picture);
$sql = "INSERT INTO table SET xyz=...., picture=`".$picture."`";
// no error occurs.... but the content of the LONG_BLOB-field picture
// is not usable as a JPEG or RAW picture.... it is destroyed.

WHY???
2018-05-21 19:14:21
http://php5.kiev.ua/manual/ru/book.mysqli.html

    Поддержать сайт на родительском проекте КГБ