I try to export a symfony project created with wamp under windows and mysql to an apache server under debian with sql server database, ive used the bundle realestateconz/mssqlbundle and freetds for etablishing connection but ive some problem ...
The first was to make an doctrine:schema:update --force
for regenerating the databse, the create unique index query failed, i had to do it myself on the server directly, then now my mini-application works at 50% in fact i can't add an article i got these message :
"An exception occurred while executing 'INSERT INTO article (title, slug, content, createdAt) VALUES (?, ?, ?, ?)' with params ["qsd", "qsdqsdqsd", "qsdqsdqsd", "2015-06-09 12:36:02.000"]":
I don't understand why, i think it's due to the mssql driver, but i'm not sure (maybe the connection or whatever)
EDIT :
as seen here "SQL Server error 1934 occurs on INSERT to table with computed column PHP/PDO"
i have this above as result as the query
5496 ANSI_WARNINGS ANSI_PADDING ANSI_NULLS ARITHABORT QUOTED_IDENTIFIER ANSI_NULL_DFLT_ON CONCAT_NULL_YIELDS_NULL
EDIT for @AnnaAdamchuk