how to use Blob datatype in Postgres

database, postgresql

Solution

use bytea (or Large Objects if you absolutely have to)

Problem

I am using a Postgresql database in my rails application. To store large file or data in database I have used blob data type in MySql. For Postgres which data type I have to use instead of blob in MySql?

Original source

Related problems