-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support JSON data type #562
Comments
could be possible, but it is not straight-forward.
|
thx for the answer! It makes sense to wait 👍 |
For now I've been doing this by using -- assuming `my_table` with a column `metadata`
ALTER TABLE my_table
ADD CONSTRAINT my_table_metadata_must_be_json CHECK (ISJSON(metadata, OBJECT)=1); This approach does not provide the more efficient binary storage the native |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MS SQL Server seems to have support for JSON data types. Would it be possible to support it via tinyTDS? Reported in sequel as well
The text was updated successfully, but these errors were encountered: