I have a serialized Java class and i want to insert this class in a oracle table. What is the datatype i should use and how shall do a insert statement.

I have created a table named test with

id number(9)
value long raw

when i insert a null it works fine but when i try to insert a serialized java class like this

Serialized se = new Serialized();
insert into test
values(1, se) it gives me an error saying that column not found.

Can anyone help me out how to insert a java class in Oracle