Tagged Questions

5
votes
4answers
1k views

Should I store Enum ID/values in the database or a C# enumeration?

Say my database tables have columns like UserType, SalesType, etc. Should I have database tables with UserTypeID, userTypeName or should I just create a C# enumeration?
2
votes
5answers
559 views

java 1.5: Best practice to keep constants for column name of db tables?

Technology: - Java 1.5 or 1.6 - Hibernate 3.4 To avoid update of column name on multiple places on change of column name or tablename, i want to have a constant file for same. I have following ...
2
votes
2answers
668 views

How to best represent Constants (Enums) in the Database (INT vs VARCHAR)?

what is the best solution in terms of performance and "readability/good coding style" to represent a (Java) Enumeration (fixed set of constants) on the DB layer in regard to an integer (or any number ...
1
vote
2answers
60 views

Best way to store constant data on Google App Engine

I'm making a (quite) simple python web application on GAE. The web app basically, ask user input, do basic calculation, then spew out some question from several module based on previous calculation, ...
1
vote
3answers
59 views

Avoiding redundancy in accessing static table data for conditional programming

I've the following scenario. My application interacts with the database which contains some static tables. If I have to use that static information in the code level mostly for conditional code, what ...
1
vote
1answer
961 views

Android RadioButton return a constant?

I am trying to perform a rating system, where with the choices to select from returns a constant number so I can insert a value into a database. My intentions are to have 3 choices, 'Great', ...
1
vote
4answers
3k views

Constants in Oracle SQL query

I am new to Oracle (though familiar with SQL) and have to write a fairly complex query where a value derived from the current date is used many times. Rather than calculate the value each time, it ...
1
vote
5answers
946 views

How can I best initialize constants from a database or servlet context?

We have constants declared in an interface in our application like this. public interface IConstants { public static final String FEVER="6"; public static final String HEADACHE="8"; } We ...
1
vote
3answers
102 views

For one of my models, I have a few instances that should be auto-populated. How do I handle this?

I have to be specific for this to make sense. In my application I have a model called theme which contains widget color theme information. We provide a few themes, but mainly rely on the user to ...
0
votes
1answer
36 views

Getting database constants and storing them in cache

Project info: WPF, PRISM, C# 4.0, WCF, Entity framework, SQL(express) My database contains several "constants" e.g. a person has a classification -> Natural Person (ID = 1) or lawful person (ID = 2). ...
0
votes
3answers
350 views

Can i use a SELECT statement to define a CHECK constraint?

In MS SQL server, can i use a SELECT statement to define a CHECK constraint? Say i have to work with two tables "Customer Master" and "Indian Customer" in ideal situation both tables are compleatly ...
0
votes
0answers
165 views

Windows port of cdb, TinyCDB

Could you recommend Windows port of CDB, TinyCDB ? TinyCDB does not compile on Windows and requires fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory fatal error ...
0
votes
1answer
150 views

Storing class constants (for use as bitmask) in a database?

Let's say I have a class called Medium which can represent different types of media. For instance: uploaded video embedded video uploaded image embedded image I represent these types with ...