Example: Inserting data into a CLOB column

 

This example shows how to insert data from a regular file referenced by :hv_text_file into a character large object (CLOB) column.

In the path description of the following C program segment:

     strcpy(hv_text_file.name, "/home/userid/dirname/filnam.1"); 
     hv_text_file.name_length = strlen("/home/userid/dirname/filnam.1"); 
     hv_text_file.file_options = SQL_FILE_READ; /* this is a 'regular' file */ 
  
     EXEC SQL INSERT INTO CLOBTAB 
       VALUES(:hv_text_file);

 

Parent topic:

Large objects