You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently queries avoids surrounding numbers and "_id" by double quotes in
Form.JSON.SQL:%DrawJSON
// to surround no numbers values and Id by quotesSet:(($Isvalidnum(tOutVal)=$$$NO)||($ZConvert(tColName,"l")="id")||($ZConvert(tColName,"l")="_id")) tOutVal = $Char(34)_tOutVal_$Char(34)
This formatting is not the same as %JSON.Adaptor uses. %JSON.Adaptor relies on JSONTYPE datatype parameter.
For example:
%Library.String
/// JSONTYPE is JSON type used for this datatype.ParameterJSONTYPE = "string";
%Library.Boolean
ParameterJSONTYPE = "boolean";
%Library.Integer
ParameterJSONTYPE = "number";
The text was updated successfully, but these errors were encountered:
Currently queries avoids surrounding numbers and "_id" by double quotes in
This formatting is not the same as %JSON.Adaptor uses. %JSON.Adaptor relies on
JSONTYPE
datatype parameter.For example:
The text was updated successfully, but these errors were encountered: