I have a MySQL database and would like to upload multiple pdf files at once and store the information into the db. Here is the db I created:
Code:
1.	CREATE TABLE `file` ( 
2.	    `id`        Int Unsigned Not Null Auto_Increment, 
3.	    `name`      VarChar(255) Not Null Default 'Untitled.txt', 
4.	    `mime`      VarChar(50) Not Null Default 'text/plain', 
5.	    `size`      BigInt Unsigned Not Null Default 0, 
6.
...