Following the spirit of this question, what should be the ideal way to store enums in a database in Delphi? I have several lookup tables that guide some business logic, so a) they are tightly coupled with my code, and b) they may be subject to change in newer releases.

Right now I'm doing it by saving its numeric values, and setting the enum value explicitly.

type TSuit = (Unknown = 4, Heart = 1, Club = 3, Diamond = 2, Spade = 0);

Do you know a better way?

link|improve this question

3  
Store as integer is the best you can do. – David Heffernan Feb 4 at 17:16
@DavidHeffernan Storing as strings and using GetEnumName/GetEnumValue is another way of doing it. Takes more space but avoids the problem of the integers getting a different meaning when inserting new values in an enum. (Not likely in this particular example, but in general it happens and should be possible. At least it shouldn't be avoided just for persistence reasons). – Marjan Venema Feb 4 at 17:22
@Marjan If you store strings instead then you equally make it hard to change the names in the future. There's no getting round that issue. – David Heffernan Feb 4 at 17:23
1  
@Marjan Venema - I can't see any advantage in storing the name. In the example above, the numbers are specified, so you can insert new values without any problems, you can even change the order and delete values. Storing strings on the other side could theoretical lead to problems with case sensitive comparisons. – martinstoeckli Feb 4 at 21:07
1  
You might make another table and store enums as a foreign key. – Mihaela Feb 5 at 3:23
show 7 more comments
feedback

1 Answer

up vote 3 down vote accepted

Given the relational model you probably should store the value of the enumeration into the table at hand and create another table where the enum value + name are stored. The latter can be created purely from RTTI.

So given your example: you have something like a Card table where Suit is a byte field with values 0..4. And you have a Suits table with 5 records, one for each enum value.

Now your data is correctly normalized and the metadata is present you you know what Suit=2 means (eg join with the Suits table).

link|improve this answer
This is what I'm currently doing. It still "smells" but if it works, it works. – Leonardo Herrera Feb 13 at 19:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.