Porting from Oracle to Postgres V2

CLOB – character large object (max 4GB) getClob TEXT (max 1GB) getString BLOB – binary large object (max 4GB) getBlob BYTEA (max 1GB) BYTEA is not documented in PostgreSQL 7.1 but it’s fully implemented; Jdbc 7.2-1.2 is required though in order to use getBytes and setBytes. Besides TEXT and BYTEA, PostgreSQL supports ................
................