Django 二进制或 BLOB 模型字段
我有一个 C# 程序,可以将 pdf 插入 MySQL 数据库中。现在我想通过 django 检索该 pdf,但 django 的 models.FileField
需要一个“上传到”参数,这意味着在幕后它实际上将文件存储在文件系统上而不是数据库中。有什么方法可以设置 django 模型,以便我可以将 pdf 直接存储在 MySQL 中?
问候
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为对此的更新,从 Django 1.6 开始,现在有一个 BinaryField 选项,可以存储最大 4 GB 的文件。 https://docs.djangoproject.com/en/dev/ref /models/fields/#django.db.models.BinaryField
Just as an update to this, as of Django 1.6, there's now a BinaryField option that will store files up to 4 GB in size. https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.BinaryField
我一直在处理同样的问题,将pdf写入mysql中的mediumblob字段并通过django检索。我已将 mysql 字段类型设置为mediumblob,将 django 字段类型设置为textfield。我使用查询集和 httpresponse 在浏览器中查看 PDF 对象(但不是直接在 django 中)。
I have been dealing with this same issue, writing a pdf to a mediumblob field in mysql and retrieving via django. I have set the mysql field type to a mediumblob and the django field type to textfield. I have used a queryset and httpresponse to view the PDF objects in a browser (but not directly in django).