Add a LargeBinary/Blob field
See original GitHub issueIssue Description
Is your feature request related to a problem? Please describe.
We are trying to port a codebase that uses a SQLite Blob field to ormar
.
-
This is modeled as
bytes
within Python. -
SQLAlchemy calls this a
LargeBinary
field. -
peewee
calls this aBlobField
.
Describe the solution you’d like
Be able to declare a model like:
class File(ormar.Model):
data: bytes = ormar.LargeBinary()
And have sqlalchemy
/ Pydantic support like other fields.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Working with binary large objects (BLOBs)
This article illustrates how to work with binary large objects (BLOBs), it will show you how to save and retrieve BLOB values in...
Read more >Binary Large Object (Blob) Data (SQL Server)
Remote BLOB store (RBS) for SQL Server lets database administrators store binary large objects (BLOBs) in commodity storage solutions instead of ...
Read more >Large Binary Strings (BLOB)
Large binary string data types (BLOB) are SQL data types that enable you to store large amounts of data, from sources such as...
Read more >What is a BLOB (Binary Large Object)? Can it be Tokenized?
BLOB stands for a “Binary Large Object,” a data type that stores binary data. ... A BLOB will hold multimedia objects to add...
Read more >Working with Binary Large Objects (BLOBs) Using SQL ...
In this article, I will discuss how to read and write Binary Large Objects (BLOBs) using SQL Server 2005 and ADO.NET.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Added in #183
Ok, it’s done will be in next release.