7

Is it possible to automatically assigned the value of a BLOB column in MySQL without uploading a file everytime a new line is included?

RafaSashi
  • 16,483
  • 8
  • 84
  • 94

1 Answers1

8

The DEFAULT value clause in a data type specification indicates a default value for a column.

Nevertheless BLOB and TEXT columns cannot be assigned a default value.

From: http://dev.mysql.com/doc/refman/5.0/en/data-type-defaults.html

RafaSashi
  • 16,483
  • 8
  • 84
  • 94