Click here to Skip to main content
15,895,557 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: What was I thinking Pin
Nagy Vilmos23-Jan-13 0:33
professionalNagy Vilmos23-Jan-13 0:33 
GeneralRe: What was I thinking Pin
Jonathan C Dickinson16-Jan-13 21:21
Jonathan C Dickinson16-Jan-13 21:21 
GeneralRe: What was I thinking Pin
Sentenryu16-Jan-13 22:23
Sentenryu16-Jan-13 22:23 
GeneralRe: What was I thinking Pin
Jonathan C Dickinson16-Jan-13 22:26
Jonathan C Dickinson16-Jan-13 22:26 
GeneralRe: What was I thinking Pin
Ranjan.D17-Jan-13 11:32
professionalRanjan.D17-Jan-13 11:32 
GeneralRe: What was I thinking Pin
Rob Grainger1-Feb-13 3:21
Rob Grainger1-Feb-13 3:21 
GeneralRe: What was I thinking Pin
Tomz_KV17-Jan-13 2:58
Tomz_KV17-Jan-13 2:58 
RantHappy new year... kind of... Pin
hoernchenmeister15-Jan-13 22:03
hoernchenmeister15-Jan-13 22:03 
After my well deserved vacation I returned to work.
Beeing happy I received a task to modify a DotNetNuke module, made by some externals from a country far far away.
Happyness didn't last long when I came along a SearchEngine class:
C#
public const string SELECT = "SELECT";
public const string DISTINCT = "DISTINCT";
public const string FROM = "FROM";
public const string WHERE = "WHERE";
public const string HAVING = "HAVING";
public const string AND = "AND";
public const string OR = "OR";
public const string IN = "IN";
public const string ON = "ON";
public const string AS = "AS";
public const string GROUP_BY = "GROUP BY";
public const string ORDER_BY = "ORDER BY";
public const string DESC = "DESC";
public const string ASC = "ASC";

this continues for about 1500 lines of code declaring every possible table/column etc I could think of.
90% of the consts aren't even in use... and it all ends up in statements like that:
C#
sqlString.AppendFormat("{0} {1} {2}.{3},{2}.{4},{2}.{5},{2}.{6},{2}.{7},{2}.{8},{2}.{9},{2}.{10},{2}.{11},{12} {13} {14} {15} {2} {16} {17} = @{17}",new string[]
{
SqlConsts.SELECT,
SqlConsts.DISTINCT,
SqlConsts.TBL1,
SqlConsts.OBJECT_NO,
SqlConsts.OBJECT_ID,
SqlConsts.COUNTRY, 
SqlConsts.REGION,
SqlConsts.SUBREGION,
SqlConsts.TOURAREA,
SqlConsts.LATITUDE,
SqlConsts.LONGITUDE,
SqlConsts.CITY,
SqlConsts.COUNT_ANY,
SqlConsts.AS,
SqlConsts.UNIT_COUNT,
SqlConsts.FROM,
SqlConsts.WHERE,
SqlConsts.YEAR
});

...am I missing something or is this an acceptable way of solving database related tasks?
Can you spot a reason for this? If so, please make my happiness return... somehow... please...

Happy new year
Andy
GeneralRe: Happy new year... kind of... Pin
PIEBALDconsult16-Jan-13 3:50
mvePIEBALDconsult16-Jan-13 3:50 
GeneralRe: Happy new year... kind of... Pin
hoernchenmeister16-Jan-13 5:06
hoernchenmeister16-Jan-13 5:06 
GeneralRe: Happy new year... kind of... Pin
Matthys Terblanche16-Jan-13 21:08
Matthys Terblanche16-Jan-13 21:08 
GeneralRe: Happy new year... kind of... Pin
Gary Huck17-Jan-13 3:41
Gary Huck17-Jan-13 3:41 
GeneralRe: Happy new year... kind of... Pin
Dave Kreskowiak17-Jan-13 5:26
mveDave Kreskowiak17-Jan-13 5:26 
GeneralRe: Happy new year... kind of... Pin
Jörgen Andersson17-Jan-13 9:04
professionalJörgen Andersson17-Jan-13 9:04 
GeneralRe: Happy new year... kind of... Pin
peterchen28-Jan-13 22:05
peterchen28-Jan-13 22:05 
GeneralRe: Happy new year... kind of... Pin
hoernchenmeister28-Jan-13 22:49
hoernchenmeister28-Jan-13 22:49 
JokeRe: Happy new year... kind of... Pin
Vladimir Svyatski8-Feb-13 10:27
professionalVladimir Svyatski8-Feb-13 10:27 
GeneralJust got an error from VS2012 Pin
Brisingr Aerowing15-Jan-13 8:48
professionalBrisingr Aerowing15-Jan-13 8:48 
GeneralGetting it wrong badly Pin
PIEBALDconsult9-Jan-13 14:12
mvePIEBALDconsult9-Jan-13 14:12 
GeneralRe: Getting it wrong badly Pin
Sentenryu10-Jan-13 6:31
Sentenryu10-Jan-13 6:31 
GeneralRe: Getting it wrong badly Pin
PIEBALDconsult10-Jan-13 7:42
mvePIEBALDconsult10-Jan-13 7:42 
GeneralRe: Getting it wrong badly Pin
Sentenryu10-Jan-13 22:31
Sentenryu10-Jan-13 22:31 
GeneralRe: Getting it wrong badly Pin
AspDotNetDev10-Jan-13 7:37
protectorAspDotNetDev10-Jan-13 7:37 
GeneralRe: Getting it wrong badly Pin
PIEBALDconsult10-Jan-13 7:52
mvePIEBALDconsult10-Jan-13 7:52 
GeneralRe: Getting it wrong badly Pin
AspDotNetDev10-Jan-13 8:11
protectorAspDotNetDev10-Jan-13 8:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.