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

33winngolld

33WIN là một trong những nền tảng đang nhận được sự quan tâm của đông đảo người dùng trong thời gian gần đây. ...

Geschrieben von 33winngolld am 13.04.2026 17:25:01
Forum: Ankündigungen
U4GM: MLB The Show 26 Free Packs Codes April 2026

MLB The Show 26 players looking to boost their Diamond Dynasty teams a bit in April 2026 still have a couple of easy free pack codes to take advan ...

Geschrieben von 1fuhd am 13.04.2026 08:24:04
Forum: Out of Order
RSVSR: Pokemon TCG Pocket Dragonite and Aerodactyl Deck Guide

Pokémon TCG Pocket has a pretty interesting control-style deck right now built around Dragonite and Aerodactyl. It's not a fast aggro setup—ins ...

Geschrieben von 1fuhd am 13.04.2026 08:23:19
Forum: Out of Order
top10trangcacuoc

Geschrieben von top10trangcacuoc am 13.04.2026 08:13:45
Forum: Off-Topic Diskussionen