DEV Community

Discussion on: A storage for array of data, that validates, and retains the schema

Collapse
 
webdeasy profile image
webdeasy.de

If you use JSON you can also store multisimensional arrays. It will be saved as a string but you can convert it in your code. What language do you use?

Antother way is to use MySQL. There you can define the type (bool, int,...).

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt

I use primarily Node.js.

MySQL is OK, but I am thinking about export format. Multiple files should be OK, as long as they are zipped.

Collapse
 
webdeasy profile image
webdeasy.de

JSON....or build your own data standard 😉