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

If you're looking for a baby horror game, this is it.

Playing "the baby in yellow (https://babyyellow.io)" can make you reconsider hiring a babysitter after you've experienced its unsettling gameplay. ...

Geschrieben von marryhile am 18.09.2025 16:44:39
Forum: Apps und PHP Script Gesuche
db Abfrage mit mehreren ids im WHERE

Ich stelle gerade alle meine Abfragen auf PDO um. Dabei stellt mich dieses Skript vor Probleme. Als erstes wird die Datenbank nach 10 zutreffende ...

Geschrieben von alfonso am 18.09.2025 11:14:58
Forum: PHP Developer Forum
DisavowHelper.com - Gratis Tool für die Backlink-Analyse

Hey, that's a really cool tool! I can definitely see how this would be helpful for managing large backlink profiles. The ability to filter and gro ...

Geschrieben von Theres4 am 17.09.2025 09:09:25
Forum: User pages
Suche nach Best Practices zur Leistungsoptimierung von PHP-Skripten!!

Am besten nutzt du die neueste PHP-Version, OPCache, (https://youtubevanced.org/) Caching und sauberen Code – so laufen deine Skripte spürbar s ...

Geschrieben von miloz am 15.09.2025 13:24:00
Forum: PHP Developer Forum