Django 二进制或 BLOB 模型字段

发布于 2024-11-29 18:05:57 字数 201 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泛泛之交 2024-12-06 18:05:57

作为对此的更新,从 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

萌梦深 2024-12-06 18:05:57

我一直在处理同样的问题,将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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文