Hi, I have a huge form (for diagnosis, a lot of questions) and I need to store the answers into database, what's the best way for do this? Thanks in advance
Edit: I'm using a SQL database, PostgreSQL
Hi, I have a huge form (for diagnosis, a lot of questions) and I need to store the answers into database, what's the best way for do this? Thanks in advance
Edit: I'm using a SQL database, PostgreSQL
For further actions, you may consider blocking this person and/or reporting abuse
Jimmy McBride -
Ingo Steinke, web developer -
Bek Brace -
Bharat -
Top comments (3)
What format is the data in? What database do you have available?
SQL database, PostgreSQL
Cool, how is the data structured? You might get away by serializing it in JSON on a
jsonb
column and then load it again.