ibase_blob_add

(PHP 5, PHP 7)

ibase_blob_addDodaje dane do nowo utworzonego BLOBa

Opis

ibase_blob_add ( resource $uchwyt_do_bloba , string $dane ) : void

ibase_blob_add() dodaje dane do BLOBa utworzonego za pomocą ibase_blob_create().

Parametry

uchwyt_do_bloba

Uchwyt do BLOBa otwartego przez ibase_blob_create().

dane

Dane do dodania.

Zwracane wartości

Nie jest zwracana żadna wartość.

Zobacz też:

add a note add a note

User Contributed Notes 1 note

up
0
a dot w dot peters at ieee dot org
19 years ago
To actually insert the BLOB into a table, the following snippet of code shows how this can be done.

<?php
  $dbh
= ibase_connect($host, $user, $pass);

 
$blh = ibase_blob_create($dbh);
 
ibase_blob_add($blh, $data);
 
$blobid = ibase_blob_close($blh);

 
$sql = "INSERT INTO blobtable(blobfield) VALUES (?)";
 
$sth = ibase_query($dbh, $sql, $blobid);
?>
To Top