JSON is used only for JavaScript?
Posted
by Bob Smith
on Stack Overflow
See other posts from Stack Overflow
or by Bob Smith
Published on 2009-02-02T23:35:12Z
Indexed on
2010/03/23
16:33 UTC
Read the original article
Hit count: 422
I am storing a JSON string in the database that represents a set of properties. In the code behind, I export it and use it for some custom logic. Essentially, I am using it only as a storage mechanism. I understand XML is better suited for this but I read that JSON is faster and preferred.
Is it a good practice to use JSON if the intention is not to use the string on the client side?
© Stack Overflow or respective owner