I want to know if in this JSON:
"salmos": [{
"orden": "1",
"antifona": "Han llegado los días de penitencia; expiemos nuestros pecados y salvaremos nuestras almas.",
"ref": "Salmo 118, 17-24",
"tema": "NULL",
"intro": "NULL",
"parte": "NULL",
"salmo": "Haz bien a tu siervo: viviré_y cumpliré tus palabras;_ábreme los ojos y contemplaré_las maravillas de tu voluntad;_soy un forastero en la tierra:_no me ocultes tus promesas.§Mi alma se consume, deseando_continuamente tus mandamientos;_reprendes a los soberbios,_infelices los que se apartan de tus mandatos;_aleja de mí las afrentas y el desprecio,_porque observo tus preceptos.§Aunque los nobles se sientan a murmurar de mí,_tu siervo medita tus leyes;_tus preceptos son mi delicia,_tus decretos son mis consejeros."
}, { ...
values that appear like this: "NULL"
, would be interpreted as a string whose value isNULL
, or would be interpreted as the value NULL
itself .
The doubt came to me because I don't know if I could have problems when retrieving any of those values, which can be a valid string, or an empty string that I wanted to represent as NULL
for greater security.