New Record error in Oracle

Hi, still having trouble in Oracle… :(

We get the following errormessage:

com.servoy.j2db.persistence.RepositoryException: couldn’t save oracle blob/clob, lob handler not found: java.lang.NoClassDefFoundError: com/servoy/j2db/dataprocessing/IOracleLobHandler couldn’t save oracle blob/clob, lob handler not found: java.lang.NoClassDefFoundError: com/servoy/j2db/dataprocessing/IOracleLobHandler

Now, I would think this would happen in a table with Blobs/clobs/Lobs/etc, but the table we’re trying to insert a new record to, only has varchar, number and date fields…

We’re running on Oracle 9.2, with as driver ojdbc14.zip + the additional oraclelobfix.jar in the driver directory. The manifest of the driver is dated: Tue Apr 6 01:10:57 2004

Hope this can be solved soon…

Paul

BTW, the method I’m trying to run is very straigth forward:

forms.new_customer.controller.newRecord(true);
forms.new_customer.company_id = 'ABC';
forms.new_customer.subscription_id = 'ABC999999599';
forms.new_customer.controller.saveData();

The two columns that are set are the fields that cannot be null.

Paul