Create a table to store files, but every lifetime that I send a file above 128mb all columns are null except the id. I also noticed that it saves only images, another type of file it does not want to save, like zip file for example.
CREATE TABLE Arquivo (
id int(11) NOT NULL auto_increment,
nome varchar(100) DEFAULT NULL,
binario longblob,
tipo varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;