Within a Java stored procedure, it is now possible to retrieve, insert, and update the content of an LVARCHAR field. the following changes have been made:
SQLIStatement and SQLPStatement methods have been enhanced such that the SetParam method can be used to specify the content of an LVARCHAR field.
The SQLCursor GetValue method has been enhanced to retrieve the entire content of an LVARCHAR field.
The SQLCursor class has a new member getLongValue to retrieve a chunk of a LVARCHAR field (in case the field content is too large).
Function
public Object getLongValue(int field, int offset, int len)
where:
Return
The function return NULL if there is no more to retrieve.