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
Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.
kathir b -
Aviral Srivastava -
GitHubOpenSource -
정유준 -
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.