I am accessing MS SQLServer through Laravel, using Eloquent ORM or Query Builder. This works fine on all tables, but one particular table throws this error:
Laravel uses db-library (if it's available) to connect to Sql Server which cannot receive unicode data from MSSQL. (1,2)
If you don't have to save unicode data in 'LeistungsBeschreibung', change the column datatype to varchar.
You may want to checkout the accepted answer to a similar question: MSSQL Query issue in PHP and querying text data
Links