使用sqlalclhemy执行插入数据时报下面的错:
b'Cannot find the object "Products" because it does not exist or you do not have permissions
模型中表结构如下:
class Products(db.Model):
ID = db.Column(db.Integer, primary_key=True)
除了插入外,查询、修改、删除都正常,权限也正常。
通过显示SQL命令,发现在执行 SET IDENTITY_INSERT [Products] ON 后报错。