cubrid_new_glo
(PECL CUBRID >= 8.3.0)
cubrid_new_glo — Create a glo instance
Description
$conn_identifier
, string $class_name
, string $file_name
) : string
The cubrid_new_glo() function is used to create a glo instance in the requested class (glo class). The glo created is a LO type, and is stored in the file_name
file.
Parameters
-
conn_identifier
-
Connection identifier.
-
class_name
-
Name of the class that you want to create a glo in.
-
file_name
-
The file name that you want to save in the newly created glo.
Return Values
Oid of the instance created, when process is successful.
FALSE
, when process is unsuccessful.
Examples
Example #1 cubrid_new_glo() example
<?php
$oid = cubrid_new_glo ($con, "glo", "input.jpg");
if ($oid){
// the type of column "image" is "object"
$req = cubrid_execute ($con, "insert into person(image) values($oid)");
if ($req) {
echo "image inserted successfully";
cubrid_close_request ($req);
cubrid_commit($con);
}
}
?>
Notes
Note:
For backward compatibility, the following deprecated alias may be used: cubrid_new_glo()
Note:
This function is removed from CUBRID 3.1.
See Also
- cubrid_save_to_glo() - Save requested file in a GLO instance
- cubrid_load_from_glo() - Read data from a GLO instance and save it in a file
- cubrid_send_glo() - Read data from glo and send it to std output
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-cubrid-new-glo.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.