How would I implement a enumeration field in a database that doesn't support enumerations? (i.e. SQLite)
The fields need to be easily searchable with "field = ?" so using any type of data serialization is a bad idea.
|
2
|
How would I implement a enumeration field in a database that doesn't support enumerations? (i.e. SQLite) The fields need to be easily searchable with "
|
|||
|
|
|
Using a foreign key to a lookup table is the approach I use. In fact, I use this even when I do use a database that supports ENUM (e.g. MySQL). For simplicity, I may skip the ever-present "
Admittedly, storing strings takes more space than MySQL's implementation of Other advantages of the lookup table are that you can add or remove a value from the list with a simple Also try querying the current list of permitted values in an Also you can add other attribute columns to the lookup table if you need to (e.g. to mark choices available only to administrators). In an Another option besides a lookup table would be to use
But this use of a PS: the equality comparison operator in SQL is a single |
|||
|
|
To restrict the possible values I would use a foreign key to a table that holds the enumeration items. If you don't want to JOIN to do your searches then make the key a varchar if JOINS are not a problem then make the key an INT and don't join unless you need to search on that field. Note that putting your enumerations in the DB precludes compile time checking of the values in your code (unless you duplicate the enumeration in code.) I have found this to be a large down side. |
||
|
|
|
|
You basically have two options :
I would personally advocate the use of varchars, because you won't break anything if you change your enum + the fields are human-readable, but ints have some pro aswell, namely performance (the size of the data is an obvious example) |
||
|
|
|
|
This is what I did recently In my hibernate mapped POJO- I kept the type of the member as String and it is VARCHAR in the database. The setter for this takes an enum There is another setter which takes String- but this is private (or you can map the field directly- if that's what you prefer.) Now the fact I am using String is encapsulated from all. For the rest of the application- my domain objects use enum. And as far as the database is concerned- I am using String. If I missed your question- I apologize. |
||
|
|
|
I would use a varchar. Is this not an option for you? |
||
|