Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what's the best implemention of client creatable and modifiable web forms in a relational database?

In several web application projects I've been a part of, the client asks to be able to create their own forms. The question arises on how to store their form definitions, and then how to store user inputted values into those custom forms.

I've seen it done two ways:

  1. Assuming that the client only defines how many fields, and what labels are associated with those fields; we can come to a solution involving four tables. FormDefinition, FormFieldDefinition, FormInstances, FormFieldValues. The client makes changes to FormDefinition and FormFieldDefinition, and the web app uses that information to render an HTML web form, on which the website visitor (end user) will submit the form, in which a new row in FormInstances is created and the values are saved in the FormFieldValues table.

    Rows in FormDefinition defines the form, i.e. form definition ID = 2, form title = 'Car Registration Form'. Rows in FormFieldDefinition defines fields of a form in FormDefinition, i.e. field definition ID = 7, field label = 'Car Model', field type = 'varchar(50)'. Rows in FormInstance is an instance of each form filled out by a user, i.e. definition id = 2, date_entered = '2008-09-24'. And rows in FormFieldValues are entries by the user, i.e. field definition = 7, value = 'Tiburon'.

    Unfortunately, it means the value column in FormFieldValues must be a char type of the largest possible size that your client might specify in a web form... and when form definitions change, managing old data becomes iffy. But user entries are queryable (i wrote a quick query that lists user entries given a form id, which is similar to another pivot question).

  2. An alternative to using four tables would be to serialize the form definitions and user's form entries into XML (or YAML or something similar) and store that as text. The upside is that the forms are human readable in the database. The downside is that there will be more application overhead with parsing XML, and the database becomes much less queryable from an SQL standpoint.

My real question is, what is this database model called? (So I can google this problem.) But I would settle on an answer to: which is the better implementation or are there better (or just as good) implementations out there?

like image 609
James Avatar asked Sep 25 '08 06:09

James


People also ask

Which database is used for Web application?

MySQL. MySQL is one of the most popular databases to use in 2022 in the computer world, especially in web application development. The main focus of this database is on stability, robustness, and maturity.

Which techniques make up a basic set of relational data manipulation activities?

A commonly used data manipulation language is Structured Query Language (SQL), which is used to update and retrieve data in a relational database using Insert, Select, and Update statements.

What are the three key components of relational database design explain?

The basic structures of a relational database (as defined by the relational model) are tables, columns (or fields), rows (or records), and keys. This section describes these elements.


1 Answers

What you're describing is often called "Entity-Attribute-Value," and sometimes described as "mixing data and metadata." That is, the names of attributes (fields) are stored as strings (data).

This leads to a bunch of complex problems like making sure each form instance includes the same set of fields, or making sure mandatory fields are filled out (the equivalent of NOT NULL in a conventional table).

You asked how best to do this with a relational database. In a relational database, you should use metadata for metadata. In this case, it means creating new table(s) for each form, and use columns for form fields. So your form definition is simply the table metadata, and one form instance is one row in that table. If you support forms with multi-valued answers (e.g. checkboxes), you need dependent tables too.

This might seem expensive or hard to scale. Probably true. So a relational database might not be the best tool for this job. You mentioned the possibility of XML or YAML; basically some kind of structured file format that you can define ad hoc. You should define a DTD for each client's form, so each form collected can be validated.

edit: If you really need the flexibility of EAV in your application, that's fine, there are usually circumstances that justify breaking the rules. Just be aware of the extra work it takes, and plan for it in your development schedule and as you scale your server to handle the load. Also see another answer of mine about EAV on StackOverflow.

like image 179
Bill Karwin Avatar answered Oct 16 '22 04:10

Bill Karwin