Gabriel Lidenor
Gabriel Lidenor

Reputation: 2985

Migration from Firebird 1.5 to PostgreSQL-9.3

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

Answers (1)

user330315
user330315

Reputation:

The equivalent of Firebird's BLOB SUB_TYPE 0 in Postgres is bytea.

So the column definition would be tela bytea

Upvotes: 3

Related Questions