Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Sollte ich PDO PARAM_LOB oder PARAM_STR für den MySQL TEXT-Typ verwenden?

Wenn Sie große Datenmengen verwenden, wie Sie in Ihrem Anwendungsfall erwähnt haben, dann ja – ich würde PDO::PARAM_LOB verwenden Ihre Daten mithilfe von Datenströmen zu manipulieren.

Gemäß der PHP-Dokumentation :

Und verwenden Sie es so:

<?php
$db = new PDO('odbc:SAMPLE', 'db2inst1', 'ibmdb2');
$stmt = $db->prepare("select contenttype, imagedata from images where id=?");
$stmt->execute(array($_GET['id']));
$stmt->bindColumn(1, $type, PDO::PARAM_STR, 256);
$stmt->bindColumn(2, $lob, PDO::PARAM_LOB);
$stmt->fetch(PDO::FETCH_BOUND);

header("Content-Type: $type");
fpassthru($lob);