How to manage Constants in Application

Posted by changed on Stack Overflow See other posts from Stack Overflow or by changed
Published on 2010-06-10T21:23:09Z Indexed on 2010/06/10 21:32 UTC
Read the original article Hit count: 303

Filed under:
|

what is the best way to use Application Constants ? What i usually do is create a separate table in database of constants and reference them as foreign key in other table. In Java i use enum.

But how to keep a single place of authority for constants in application and what are the different ways i can do that(like table or enum).

© Stack Overflow or respective owner

Related posts about application

Related posts about constants