Is it possible to automatically assigned the value of a BLOB
column in MySQL without uploading a file everytime a new line is included?
Asked
Active
Viewed 1.2k times
7

RafaSashi
- 16,483
- 8
- 84
- 94
1 Answers
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