The hard-coding tag has no wiki summary.
0
votes
1answer
86 views
what is hardcoding in c++, and how can fix this? [duplicate]
ok so i got marked off on my program for hard coding, but not sure what i did wrong, here is a part of my program that was 'hardcoded'
cout << "Tax $" << (meal_price * guests) * TAX ...
0
votes
4answers
137 views
Alternative practice for hard coding text strings in a Java program?
In my program I have lots of string and repeated strings. Is there a way to separate the text strings from the source code. I do not want to hardcode the string within my program.
In PHP I used to ...
0
votes
2answers
69 views
How can I connect to LDAP from a smartphone without hardcoding the password?
Our Android app connects to an LDAP db for authentication and user data (email address, phone number, etc.). Until now, the app has connected to a piece of middleware that opens the connection to LDAP ...
2
votes
0answers
93 views
I want to hardcode the value of a dummy column from my view created upon an oracle DB
I have a view which has one dummy column called action.
I have a formula {@action}
if {abc_view.name} startswith "abc" Then {abc_view.action} = "Represents action" Else {abc_view.action} = ""
and ...
5
votes
4answers
396 views
External file for strings, as opposed to hardcoding them
I have experience developing some Android apps, which handily have XML string files where you can store strings. The last time I developed a desktop Java app I hard-coded the strings (for example ...
5
votes
3answers
238 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:
...
1
vote
5answers
360 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
240 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 ...
5
votes
4answers
547 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 ...
1
vote
1answer
971 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
...
1
vote
1answer
3k views
What does “hard coded” mean?
I gotta problem, it's just a little one. I have three assignments due tomorrow night but in order to do two of them, I have to be able to access a test.txt document from my IDE. To do that, the file ...
1
vote
8answers
418 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.
...
0
votes
4answers
359 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 ...
1
vote
9answers
883 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 [closed]
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 ...
1
vote
5answers
1k 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 ...
3
votes
18answers
2k 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 ...
5
votes
6answers
4k 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
8answers
2k 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 ...
12
votes
21answers
2k 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 ...