cubrid_lob2_read

(PECL CUBRID >= 8.4.1)

cubrid_lob2_readRead from BLOB/CLOB data

Beschreibung

cubrid_lob2_read(resource $lob_identifier, int $len): string

The cubrid_lob2_read() function reads len bytes from the LOB data and returns the bytes read.

Parameter-Liste

lob_identifier

Lob identifier as a result of cubrid_lob2_new() or get from the result set.

len

Length from buffer you want to read from the lob data.

Rückgabewerte

Returns the contents as a string, false when there is no more data, or null on failure.

Beispiele

Beispiel #1 cubrid_lob2_read() example 1

<?php
// test_lob (id INT, contents CLOB)

$conn cubrid_connect("localhost"33000"demodb""public""");

$req cubrid_execute($conn"select * from test_lob");

$row cubrid_fetch_row($reqCUBRID_LOB);

print 
"position now is " cubrid_lob2_tell($row[1]) . "\n";

cubrid_lob2_seek($row[1], 10CUBRID_CURSOR_FIRST);

print 
"\nposition after moving farword is " cubrid_lob2_tell($row[1]) . "\n";

$data cubrid_lob2_read($row[1], 12);

print 
"\nposition after reading is " cubrid_lob2_tell($row[1]) . "\n";

print 
$data "\n";

cubrid_lob2_seek($row[1], 5CUBRID_CURSOR_CURRENT);

print 
"\nposition after moving again is " cubrid_lob2_tell($row[1]) . "\n";

$data cubrid_lob2_read($row[1], 20);
print 
$data "\n";

cubrid_disconnect($conn);
?>

Beispiel #2 cubrid_lob2_read() example 2

<?php
// test_lob (id INT, contents CLOB)

$conn cubrid_connect("localhost"33000"demodb""dba""");

$req cubrid_execute($conn"select * from test_lob");

$row cubrid_fetch_row($reqCUBRID_LOB);

while (
true) {
    if (
$data cubrid_lob2_read($row[1], 1024)) {
        print 
$data "\n";
    }
    elseif (
$data === false) {
        print 
"There is no more data\n";
        break;
    }
    else {
        print 
"There must some errors\n";
        break;
    }
}

cubrid_disconnect($conn);
?>

Siehe auch

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

Was genau bedeutet "Vibe Coding"? Ein tiefgehender Blick für Entwickler

In der Welt der Softwareentwicklung gibt es unzählige Wege, wie man an ein Projekt herangeht. Manche schwören auf strikte Planung, andere auf bewährte Algorithmen und wieder andere lassen sich von etwas ganz anderem leiten: ihrem Gefühl. ...

admin

Autor : admin
Kategorie: Software & Web-Development

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

Grid und Pos geht nicht ...

Silder1 should be in row 5 and columns 2 to 6. Silder2 should be in row 6 and columns 2 to 5. https://handicap-fan.com/test.html snow rider (h ...

Geschrieben von glancerangale am 31.05.2025 11:42:11
Forum: PHP Developer Forum
Umfangreiche Auswertung einer Solaranlage

Speed Stars (https://wordle2.io/speed-stars-unblocked) is more than just a sprinting game—it’s a celebration of movement, timing, and physics ...

Geschrieben von hennysmath12 am 31.05.2025 10:33:40
Forum: Projekthilfe
Gelöschte Datensätze in Datenbank ausgeben

Da hilft die Doku: https://www.php.net/manual/de/mysqli.affected-rows.php subway surfers (https://subwaysurf.io/play)​ I got it, thanks for sh ...

Geschrieben von hennysmath12 am 31.05.2025 10:29:25
Forum: SQL / Datenbanken
Gelöschte Datensätze in Datenbank ausgeben

Da hilft die Doku: https://www.php.net/manual/de/mysqli.affected-rows.php speed stars (https://speed-stars.github.io) Thank you so much!

Geschrieben von daberer am 30.05.2025 10:59:06
Forum: SQL / Datenbanken