PHP Manual: fbsql_create_clob
fbsql_create_clob
Description
string fbsql_create_clob ( string clob_data [, resource link_identifier] )Creates a CLOB from the given data.
Parameters
clob_dataThe CLOB data.
link_identifierA FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect().
If optional and not specified, the function will try to find an open link to the FrontBase server and if no such link is found it will try to create one as if fbsql_connect() was called with no arguments
Return Values
Returns a resource handle to the newly created CLOB, which can be used with insert and update commands to store the CLOB in the database.
Examples