SQL Server error 1934 occurs on INSERT to table with computed column PHP/PDO

前端 未结 3 860
粉色の甜心
粉色の甜心 2020-12-03 23:00

After adding a computed column to a table in SQL Server 2005 I am getting the following message on INSERT, only via PHP (using PDO) it\'s working fine in SQL Se

3条回答
  •  爱一瞬间的悲伤
    2020-12-03 23:50

    Following @kackleyjm answer I tried to activate the less options possible.

    I ended up with:

    SET ANSI_WARNINGS ON
    SET ANSI_PADDING ON
    SET CONCAT_NULL_YIELDS_NULL ON
    

    This did the trick for me

提交回复
热议问题