tylerlong/quick_orm

Does quick_orm support BLOB?

kunzhipeng opened this issue · 1 comments

I just tried following:

class Posts:
    __table_args__ = {'mysql_engine': 'InnoDB', 'mysql_charset': 'utf8'}
    image = Column(BLOB)

post = Posts()
post.image = image_bytes

But the script crashed with strange error.

Post the error message.

quick_orm supports the same column types as SQLAlchemy. So I think the answer to your question is yes.