Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
In Python, I am struggling to print out the connectionstring value of a dataconnection. I think the problem is that the connection strings are full of brackets and commas, making python interpret it as json structure not values.
Any suggestions how I can python to read the connectionstring as a simple value?
Turned out i should be using the json.loads (i.e. load string) which reads the json into a python dictionary and the connectionstring was correctly read as a single value.
I'm not python expert but according to this post it would be r Prefix:
Let us know if it works.
Turned out i should be using the json.loads (i.e. load string) which reads the json into a python dictionary and the connectionstring was correctly read as a single value.
Thanks for sharing the resolution @DavidFosterVF for the python code issue.