diff options
author | Frank M. Kromann <fmk@php.net> | 2001-10-16 23:08:38 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2001-10-16 23:08:38 +0000 |
commit | 2aefe30f18c040fd12c05fa53e8bfc44e1c6faa4 (patch) | |
tree | e368524fcc19c6f5f6da1ebb8069fae9667ef8d5 /ext/fbsql/php_fbsql.h | |
parent | d9c26ab299e69a457bd8c76c63967b7892ac18ad (diff) | |
download | php-git-2aefe30f18c040fd12c05fa53e8bfc44e1c6faa4.tar.gz |
Adding new functions to retreive LOB data.
fbsql_set_lob_mode() is used to switch from FBSQL_LOB_DIRECT to FBSQL_LOB_HANDLE
when LOBS are retreived as FBSQL_LOB_HANDLE the user must call fbsql_read_blob() or fbsql_read_clob() to get the data.
Diffstat (limited to 'ext/fbsql/php_fbsql.h')
-rw-r--r-- | ext/fbsql/php_fbsql.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/fbsql/php_fbsql.h b/ext/fbsql/php_fbsql.h index a270a6a067..584edf16b6 100644 --- a/ext/fbsql/php_fbsql.h +++ b/ext/fbsql/php_fbsql.h @@ -83,6 +83,9 @@ PHP_FUNCTION(fbsql_rollback); PHP_FUNCTION(fbsql_create_blob); PHP_FUNCTION(fbsql_create_clob); +PHP_FUNCTION(fbsql_set_lob_mode); +PHP_FUNCTION(fbsql_read_blob); +PHP_FUNCTION(fbsql_read_clob); PHP_FUNCTION(fbsql_hostname); PHP_FUNCTION(fbsql_database); |