(pymssql._pymssql.OperationalError) (8152, b'String or binary data would be truncated.DB-Lib error message 20 018, severity 16:\nGeneral SQL Server error: Check messages from the SQL Server\n')
(pymssql._pymssql.OperationalError) (8152, b'String or binary data would be truncated.DB-Lib error message 20 018, severity 16:\nGeneral SQL Server error: Check messages from the SQL Server\n')
上面这种情况是因为我们SQLServer中设置的字段的长度不够导致(或者说是我们存的数据超出了字段设置的长度范围),所以只需要调整数据库对应字段的长度,我这里之前设置的是varchar(255),现在改为text类型,就完美解决了。