Results of 1 - 10 of about 47 for CLOB (0.002 sec.)
- Get BLOB/CLOB data 11415
- « cubrid_lob_export cubrid_lob_send » PHP Manual CUBRID 関数 Get BLOB/CLOB data cubrid_lob_get (
...
PECL CUBRID >= 8.3.1) cubrid_lob_get — Get BLOB/CLOB data 説明 cubrid_lob_get ( resource $conn_identifi ...
$sql ): array cubrid_lob_get() is used to get BLOB/CLOB meta info from CUBRID database, CUBRID gets BLOB/C ...
ieves only one column and its data type is BLOB or CLOB. Remember to use cubrid_lob_close() to release the ...
e ( $conn , "CREATE TABLE doc (id INT, doc_content CLOB)" ); cubrid_execute ( $conn , "INSERT INTO doc VAL ...
-
https://man.plustar.jp/php/function.cubrid-lob-get.html
- [similar]
- Read BLOB/CLOB data and send straight to browser 11248
- « cubrid_lob_get cubrid_lob_size » PHP Manual CUBRID 関数 Read BLOB/CLOB data and send straight
...
(PECL CUBRID >= 8.3.1) cubrid_lob_send — Read BLOB/CLOB data and send straight to browser 説明 cubrid_lob_ ...
ob_identifier ): bool cubrid_lob_send() reads BLOB/CLOB data and passes it straight through to the browser ...
n, you must use cubrid_lob_get() first to get BLOB/CLOB info from CUBRID. パラメータ conn_identifier Conne ...
e ( $conn , "CREATE TABLE doc (id INT, doc_content CLOB)" ); cubrid_execute ( $conn , "INSERT INTO doc VAL ...
-
https://man.plustar.jp/php/function.cubrid-lob-send.html
- [similar]
- Export BLOB/CLOB data to file 11020
- « cubrid_lob_close cubrid_lob_get » PHP Manual CUBRID 関数 Export BLOB/CLOB data to file cubrid_
...
L CUBRID >= 8.3.1) cubrid_lob_export — Export BLOB/CLOB data to file 説明 cubrid_lob_export ( resource $co ...
me ): bool cubrid_lob_export() is used to get BLOB/CLOB data from CUBRID database, and saves its contents ...
n, you must use cubrid_lob_get() first to get BLOB/CLOB info from CUBRID. パラメータ conn_identifier Conne ...
e ( $conn , "CREATE TABLE doc (id INT, doc_content CLOB)" ); cubrid_execute ( $conn , "INSERT INTO doc VAL ...
-
https://man.plustar.jp/php/function.cubrid-lob-export.html
- [similar]
- Close BLOB/CLOB data 10762
- « cubrid_is_instance cubrid_lob_export » PHP Manual CUBRID 関数 Close BLOB/CLOB data cubrid_lob_
...
ECL CUBRID >= 8.3.1) cubrid_lob_close — Close BLOB/CLOB data 説明 cubrid_lob_close ( array $lob_identifier ...
bool cubrid_lob_close() is used to close all BLOB/CLOB returned from cubrid_lob_get() . パラメータ lob_id ...
e ( $conn , "CREATE TABLE doc (id INT, doc_content CLOB)" ); cubrid_execute ( $conn , "INSERT INTO doc VAL ...
ect ( $conn ); ?> 参考 cubrid_lob_get() - Get BLOB/CLOB data cubrid_lob_size() - Get BLOB/CLOB data size c ...
-
https://man.plustar.jp/php/function.cubrid-lob-close.html
- [similar]
- Get BLOB/CLOB data size 10625
- « cubrid_lob_send cubrid_lob2_bind » PHP Manual CUBRID 関数 Get BLOB/CLOB data size cubrid_lob_s
...
(PECL CUBRID >= 8.3.1) cubrid_lob_size — Get BLOB/CLOB data size 説明 cubrid_lob_size ( resource $lob_ide ...
er ): string cubrid_lob_size() is used to get BLOB/CLOB data size. パラメータ lob_identifier LOB identifie ...
ose ( $lobs ); ?> 参考 cubrid_lob_get() - Get BLOB/CLOB data cubrid_lob_close() - Close BLOB/CLOB data cub ...
rid_lob_export() - Export BLOB/CLOB data to file cubrid_lob_send() - Read BLOB/CLOB da ...
-
https://man.plustar.jp/php/function.cubrid-lob-size.html
- [similar]
- Import BLOB/CLOB data from a file 9835
- « cubrid_lob2_export cubrid_lob2_new » PHP Manual CUBRID 関数 Import BLOB/CLOB data from a file
...
CUBRID >= 8.4.1) cubrid_lob2_import — Import BLOB/CLOB data from a file 説明 cubrid_lob2_import ( resourc ...
rt() function is used to save the contents of BLOB/CLOB data from a file. To use this function, you must u ...
lt set. filename File name you want to import BLOB/CLOB data. It also supports the path of the file. 戻り値 ...
( $conn , "CREATE TABLE test_lob (id INT, contents CLOB)" ); $req = cubrid_prepare ( $conn , "INSERT INTO ...
-
https://man.plustar.jp/php/function.cubrid-lob2-import.html
- [similar]
- LOB ファイルから、ユーザーが定義したサイズの内容を取得する 9622
- « db2_last_insert_id db2_next_result » PHP Manual IBM DB2 関数 LOB ファイルから、ユーザーが定義し
...
, $password ); if ( $conn ) { $drop = 'DROP TABLE clob_stream' ; $result = @ db2_exec ( $conn , $drop ); ...
$create = 'CREATE TABLE clob_stream (id INTEGER, my_clob CLOB)' ; $result = db2 ...
= "" ; $stmt = db2_prepare ( $conn , "INSERT INTO clob_stream (id,my_clob) VALUES (1, ?)" ); $variable = ...
"THIS IS A CLOB TEST. THIS IS A CLOB TEST." ; db2_bind_param ( $st ...
-
https://man.plustar.jp/php/function.db2-lob-read.html
- [similar]
- Bind variables to a prepared statement as parameters 8922
- « CUBRID 関数 cubrid_close_prepare » PHP Manual CUBRID 関数 Bind variables to a prepared stateme
...
lt. 注意 : If the type of data to be bound is BLOB/CLOB, CUBRID will try to map the data as a PHP stream. ...
ESTAMP TIMESTAMP OBJECT OBJECT ENUM ENUM BLOB BLOB CLOB CLOB NULL NULL Not supported SET SET MULTISET MULT ...
e as an argument when they are NCHAR, BIT, or BLOB/CLOB). 戻り値 成功した場合に true を、失敗した場合に fa ...
返します。 変更履歴 バージョン 説明 8.3.1 Added BLOB/CLOB data types support. 例 例1 cubrid_bind() example < ...
-
https://man.plustar.jp/php/function.cubrid-bind.html
- [similar]
- Export the lob object to a file 8527
- « cubrid_lob2_close cubrid_lob2_import » PHP Manual CUBRID 関数 Export the lob object to a file
...
rt() function is used to save the contents of BLOB/CLOB data to a file. To use this function, you must use ...
ult set. filename File name you want to store BLOB/CLOB data. It also supports the path of the file. 戻り値 ...
example <?php // Table: test_lob (id INT, contents CLOB) $conn = cubrid_connect ( "localhost" , 33000 , "d ...
e ( $conn , "CREATE TABLE doc (id INT, doc_content CLOB)" ); cubrid_execute ( $conn , "INSERT INTO doc VAL ...
-
https://man.plustar.jp/php/function.cubrid-lob2-export.html
- [similar]
- Write to a lob object 8527
- « cubrid_lob2_tell cubrid_lock_read » PHP Manual CUBRID 関数 Write to a lob object cubrid_lob2_w
...
te() example 1 <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect ( "localhost" , 33000 , "d ...
( $conn , "CREATE TABLE test_lob (id INT, contents CLOB)" ); $req = cubrid_prepare ( $conn , "INSERT INTO ...
VALUES(2, ?)" ); $lob = cubrid_lob2_new ( $conn , 'CLOB' ); $len = cubrid_lob2_write ( $lob , "Hello world ...
te() example 2 <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect ( "localhost" , 33000 , "d ...
-
https://man.plustar.jp/php/function.cubrid-lob2-write.html
- [similar]