Django Binary or BLOB model field
问题 I have a C# program that inserts a pdf inside a MySQL database. Now I want to retrieve that pdf via django but django's models.FileField needs an "Upload To" parameter which means behind the scenes it actually stores the File on the file system rather than in the database. Is there any way I can set up a django model so that I can store the pdf directly inside MySQL? Regards 回答1: I have been dealing with this same issue, writing a pdf to a mediumblob field in mysql and retrieving via django.