Reputation: 2985
I'm migrating all the tables and data from Firebird 1.5 to PostgreSQL-9.3.
The software was build using Delphi 7 and I'm migrating to Java web.
My question is:
How to make this works in PostgreSQL?
TELA BLOB SUB_TYPE 0 SEGMENT SIZE 80
Upvotes: 0
Views: 722
Reputation:
The equivalent of Firebird's BLOB SUB_TYPE 0
in Postgres is bytea
.
So the column definition would be tela bytea
Upvotes: 3