Tagged Questions

1
vote
18answers
782 views

What is your attitude towards hard coding?

Mine is this: Hard coding is the way! All my problems go away. Just code it one by one. And problems come back kill your day. I absolutely hated it but the fact is "business …
0
votes
4answers
99 views

How to refer dynamically to another database user?

I've a case in which I need to refer to another database user. I've to hard code database user name in view while referring to it. SELECT * FROM eg001t3.DUAL; // example. Is th …
1
vote
9answers
242 views

Benefits to using a database table instead of just hard coding a simple list of data if the data is consumed by 1 app.

For a while, I've been told by a number of people that a listing of U.S. States (and territories) should be stored in a database table and cached for applications that use the info …
0
votes
4answers
220 views

How to avoid hardcoded field names in HQL, Hibernate?

Suppose that I have the following HQL: String hql = "select e.aField from MyEntity as e"; If I want to refactor and change the name of the MyEntity's member variable aField to s …
3
votes
6answers
340 views

How do I create an html report without hardcoding the html?

I'm currently refactoring a console application whose main responsibility is to generate a report based on values stored in the database. The way I've been creating the report up …
8
votes
21answers
1k views

Is hard-coding literals ever acceptable?

The code base I'm currently working on is littered with hard-coded values. I view all hard coded values as a code smell and I try to eliminate them where possible...however there …
2
votes
7answers
525 views

Are hard-coded STRINGS ever acceptable?

Similar to Is hard-coding literals ever acceptable?, but I'm specifically thinking of "magic strings" here. On a large project, we have a table of configuration options like these …