helloflask icon indicating copy to clipboard operation
helloflask copied to clipboard

SQLAlchemy + SQLite3 设置的字符长度限制不会生效

Open turtlekey opened this issue 3 years ago • 1 comments

  • 页数:258
  • 如标题所示。
class Book(db.model):
  name = db.Column(db.String(20))  # 字符数限制不会生效

turtlekey avatar Jul 17 '21 07:07 turtlekey

SQLite 不会限制(force)字符串长度,不过其他 RDBMS 会,比如 MySQL。

greyli avatar Dec 31 '21 05:12 greyli