Refer to "Restrictions and Limitations" for a list of methods that are not supported by Informix JDBC Driver and should not be used in your Java program. This reference also includes a list of methods that behave differently than described in the JDBC API specification.
The TextType.java program shows how to insert data into a TEXT column. It is very similar to inserting into a BYTE column, except the method setAsciiStream() is used to set the input parameter instead of setBinaryStream().
The TextType.java program shows how to select data from a TEXT column. It is very similar to selecting from a BYTE column, except the getAsciiStream() method is used instead of getBinaryStream().