Binary Data in MySQL

Geoff Dalgas picture Geoff Dalgas · Aug 1, 2008 · Viewed 78.5k times · Source

How do I store binary data in MySQL?

Answer

Mat picture Mat · Aug 1, 2008

The answer by phpguy is correct but I think there is a lot of confusion in the additional details there.

The basic answer is in a BLOB data type / attribute domain. BLOB is short for Binary Large Object and that column data type is specific for handling binary data.

See the relevant manual page for MySQL.