User 0908c5ccdd
21-07-2008 13:15:05
Hi
The Developer's Guide - Cartridge API describes the JC_INSERT function as having an overloaded version with CLOB and BLOB structure fields. Please could you let me know where I can find the list and order of parameters for using CLOB structure fields? I would like to call the function from PL/SQL to insert a CLOB from another data source.
I can insert a SMILES string into my table (named COMMOUNDS) using
but if I attempt to insert the CLOB:
I receive a compilation error of "PLS-00363: expression 'compounds' cannot be used as an assignment target". Is the list of parameters different for the overloaded function spec?
Many thanks.
The Developer's Guide - Cartridge API describes the JC_INSERT function as having an overloaded version with CLOB and BLOB structure fields. Please could you let me know where I can find the list and order of parameters for using CLOB structure fields? I would like to call the function from PL/SQL to insert a CLOB from another data source.
I can insert a SMILES string into my table (named COMMOUNDS) using
Code: |
aCDReturn := jchem_table_pkg.jc_insert(vSmiles, 'compounds', 'jchemproperties', 'false', 'false', ''); |
but if I attempt to insert the CLOB:
Code: |
aCDReturn := jchem_table_pkg.jc_insert(cMolFile, 'compounds', 'jchemproperties', 'false', 'false', ''); |
I receive a compilation error of "PLS-00363: expression 'compounds' cannot be used as an assignment target". Is the list of parameters different for the overloaded function spec?
Many thanks.