Hi!.
I create some tables in Oracle to use with dbforms2.5
I have jdk1.5 and Tomcat 5.5 in windows and linux platform
I try to create dbforms, but some error exists, about type.
Later I note that tables with filed type CLOB (Oracle) Character-large object, was the problem.
I was able to create dbforms to some tables without clob type.
But, how can i manage clob type data?
There is any way to dbform managet oracle clob fields?
Thank's..
I try to change this Clob type to varchar(2000), because this length can be contains that I need, but when i get this value from the database this is truncate.
Some tips?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi!.
I create some tables in Oracle to use with dbforms2.5
I have jdk1.5 and Tomcat 5.5 in windows and linux platform
I try to create dbforms, but some error exists, about type.
Later I note that tables with filed type CLOB (Oracle) Character-large object, was the problem.
I was able to create dbforms to some tables without clob type.
But, how can i manage clob type data?
There is any way to dbform managet oracle clob fields?
Thank's..
I try to change this Clob type to varchar(2000), because this length can be contains that I need, but when i get this value from the database this is truncate.
Some tips?
Hi!
About my post before I change the dbforms-config.xml change
fieldType="clob" size="4000"
to
fieldType="varchar2" size="2000"
And works!
of course that there exists a limit to 2000 bytes, but this are enough to this applications..