Hello Friend;
I made one DB like this:
create table bbs (
num number(5) not null,
name varchar2(50),
email varchar2(50),
subject varchar2(100),
content long
);
But, when I insert small value from write.html file, it works. But, It doesn't work fro some long value. And the error is:
java.sql.SQLException: Data size bigger than max size for this type: 5146
We know long can have 2GB, but why not then two page or like that data. It can't store?
Can anyone help me please?
Thanks.
Like Linux, Want to be Linux Guru
I made one DB like this:
create table bbs (
num number(5) not null,
name varchar2(50),
email varchar2(50),
subject varchar2(100),
content long
);
But, when I insert small value from write.html file, it works. But, It doesn't work fro some long value. And the error is:
java.sql.SQLException: Data size bigger than max size for this type: 5146
We know long can have 2GB, but why not then two page or like that data. It can't store?
Can anyone help me please?
Thanks.
Like Linux, Want to be Linux Guru