Thread: creating tables with blob types

creating tables with blob types

From
Fathi Ben Nasr
Date:
Hello,

    I can't figure out how to create tables with blob types.
Tried with psql, pgadmin unsuccessufully.
Can some one help me ?


Re: creating tables with blob types

From
"Cornelia Boenigk"
Date:
Hello

CREATE TABLE binfield_oid (bindata oid [, column type]);

CREATE TABLE binfield_bytea(bindata bytea [, column type]);

Regards
Conni