Storing JSON in an SQL Server database?

Posted by JKirchartz on Stack Overflow See other posts from Stack Overflow or by JKirchartz
Published on 2010-03-23T04:59:51Z Indexed on 2010/03/23 6:13 UTC
Read the original article Hit count: 297

Filed under:
|
|
|

I'm developing a form generator, and wondering if it would be bad mojo to store JSON in an SQL Server database?

I want to keep my database & tables simple, so I was going to have

`pKey, formTitle, formJSON`

on a table, and then store

{["firstName":{"required":"true","type":"text"},"lastName":{"required":"true","type":"text"}}

in formJSON. would this slow down the DB server too much to set live?

Any input is appreciated.

© Stack Overflow or respective owner

Related posts about JSON

Related posts about sql