Quantcast
Channel: dBforums – Everything on Databases, Design, Developers and Administrators
Viewing all articles
Browse latest Browse all 13329

set file size in MySQL

$
0
0
Hello,

i'm a beginner in database, I have a MySQL installed on my Linux desktop, I would like to create a database to store .ogg files, but MySQL don't allow me to store files bigger than 2,048KiB. What should I do?

my table structure is :
Code:

mysql> show tables;
+-------------------+
| Tables_in_animals |
+-------------------+
| birds            |
| music            |
+-------------------+
2 rows in set (0.00 sec)

mysql> describe music;
+------------+-----------------+------+-----+---------+----------------+
| Field      | Type            | Null | Key | Default | Extra          |
+------------+-----------------+------+-----+---------+----------------+
| subject_id | int(5) unsigned | NO  | PRI | NULL    | auto_increment |
| music      | longblob        | NO  |    | NULL    |                |
+------------+-----------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)

thanks.

Viewing all articles
Browse latest Browse all 13329

Trending Articles