Hi All, I am trying to create the internal tables used for ODMG for DB2 database. I need to know whether I use the BLOB type for LONGVARBINARY.
Eg. One of the Internal tables:
CREATE TABLE OJB_NRM
(
NAME VARCHAR (250),
OID_ LONGVARBINARY,
PRIMARY KEY(NAME)
);
For the above table it doesn't allow me to create this table, it sends me a
message LONGVARBINARY not supported. Instead can I use a BLOB type. If not
which type should I use.
Thanks
UO
