I am running into an issue today, where Sonar, during the setup migration process, inserts dates with the English format while our SQL Server instance expects the French format (and this cannot be changed).

We have tested several drivers for SQL Servers but the issue still isn't solved.

Any idea how this could be solved ? Or, at least, do you know which module of Sonar (see Github) is the web application handling this ?

Thanks in advance!

Rolf

link|improve this question

72% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Dates are normally stored as numeric EPOCH values within the database, so the issue you're struggling with is how to represent the date data when serialised during the migration process.

Details of your migration process are sketchy, so I'll assume that you're dealing with some sort of database dump. I'm guessing the "English" date format you refer to is a variation on the ISO 8601 standard, namely:

YYYY-MM-DD HH:MM:SS

What I suggest is reading the date fields into the database as converted strings (Use the SQL Server convert function).

link|improve this answer
Hi, we finally ended up changing the date format on the DB server side, and removed all but the default MSSQL driver shipped with Sonar... and it just works! – Rolf Jan 17 at 13:35
Oh well, all's well ... – Mark O'Connor Jan 17 at 18:58
I'll validate your answer anyway, as to reward your effort ^^ – Rolf Jan 17 at 21:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.