Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
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 are some cases that ...
5
votes
4answers
131 views

How to avoid hardcoding strings

This is a question regarding best coding practices. I would like to know the consensus about how to best avoid hardcoding strings and values in a .NET application. What I've seen so far where I have ...
5
votes
6answers
2k 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 til now is as ...
4
votes
3answers
161 views

How to hide literals in code

What are the main existing approaches to hide the value of literals in code, so that they are not easily traced with just an hexdumper or a decompiler? For example, instead of coding this: ...
2
votes
18answers
1k 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 people" tend to like ...
2
votes
8answers
1k 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: Name ...
1
vote
5answers
107 views

Avoid hardcoding in switch statement

I have an object with has two properties: Text and Type. To avoid hard-coding the Types, I put them in the database, so they can be added to in future. At the moment the types are URL, Username and ...
1
vote
0answers
135 views

How to remove hard coding of Exe names in C++ application?

I am working on Form application using Codegear C++. All Exe names in the code are hard coded. The Exes are present in a common drive. What is the best way to remove hard coding? Is it good to use ...
1
vote
8answers
304 views

What's the point in hard coding values which may change?

When coding systems which use configuration information, it is always a best practice to soft code these on some medium like Xml so these values can be edited without recompiling the entire system. ...
1
vote
9answers
672 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 information. The only ...
0
votes
1answer
251 views

SQL Server: avoiding hard coding of database name in cross-database views

So, lets say you have two SQL Server Databases on the same server that reference each others tables in their Views, Functions and Stored Procedures. You know, things like this: use database_foo ...
0
votes
4answers
263 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 there a way to refer ...
0
votes
5answers
705 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 something else, I ...