I\'m having issues trying to get a SQL Server JSON result set to play nicely with PYODBC. My Python/Flask skills aren\'t the best, so I\'m not entirely sure if this is somet
Thanks to a combination of the comments above, I have managed to get this working.
In case anyone else comes across my issue, I'll summarise:
As per @GordThompson's comment, I changed the driver from the old SQL Server
to ODBC Driver 13 for SQL Server
. There were a couple of tweaks needed in my parameter passing once I had upgraded the driver version, but on the whole this seemed like a wise move
Perhaps more importantly, @FlipperPA's comment suggested I CAST
the JSON Object in the SQL Server query to a VARCHAR(MAX)
.
SELECT CAST( (SELECT ..... FOR JSON PATH) AS VARCHAR(MAX))
This returned the full JSON object that was being selected and everything is now working correctly.
I can only assume there is some issue with pyodbc supporting JSON in SQL Server 2017/Azure?