Click here to Skip to main content
15,887,444 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: String.Format??? Pin
Jörgen Andersson9-Jul-10 4:59
professionalJörgen Andersson9-Jul-10 4:59 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 5:06
mvePIEBALDconsult9-Jul-10 5:06 
GeneralRe: String.Format??? Pin
David Skelly9-Jul-10 5:54
David Skelly9-Jul-10 5:54 
GeneralRe: String.Format??? [modified] Pin
PIEBALDconsult9-Jul-10 7:31
mvePIEBALDconsult9-Jul-10 7:31 
GeneralRe: String.Format??? Pin
Jörgen Andersson9-Jul-10 10:23
professionalJörgen Andersson9-Jul-10 10:23 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 10:33
mvePIEBALDconsult9-Jul-10 10:33 
GeneralRe: String.Format??? Pin
oggenok649-Jul-10 8:14
oggenok649-Jul-10 8:14 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 8:59
mvePIEBALDconsult9-Jul-10 8:59 
While it is true that one should "use the right tool for the right job", I have never used EXISTS (I have an Oracle background), and I have not used IN/NOT IN for many years, and never with SQL Server.

JOIN tends to scale better -- you may have an IN, EXISTS, or even a BETWEEN that has to be converted to a JOIN as the project becomes more complex; using a JOIN to begin with eases such maintenance.

JOIN allows you to configure a system by maintaining a table rather than modifying the code.


As with Jörgen's post, an IN with hard-coded values I especially discourage; they reek of the "magic numbers" code smell. A subquery on some table would at least improve maintainability.
GeneralRe: String.Format??? Pin
Jörgen Andersson9-Jul-10 10:48
professionalJörgen Andersson9-Jul-10 10:48 
GeneralRe: String.Format??? [modified] Pin
PIEBALDconsult9-Jul-10 10:51
mvePIEBALDconsult9-Jul-10 10:51 
GeneralRe: String.Format??? Pin
Jörgen Andersson9-Jul-10 11:06
professionalJörgen Andersson9-Jul-10 11:06 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 12:29
mvePIEBALDconsult9-Jul-10 12:29 
GeneralRe: String.Format??? Pin
Jörgen Andersson9-Jul-10 13:00
professionalJörgen Andersson9-Jul-10 13:00 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 13:05
mvePIEBALDconsult9-Jul-10 13:05 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 15:05
mvePIEBALDconsult9-Jul-10 15:05 
GeneralRe: String.Format??? Pin
Jörgen Andersson9-Jul-10 10:32
professionalJörgen Andersson9-Jul-10 10:32 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 10:45
mvePIEBALDconsult9-Jul-10 10:45 
GeneralRe: String.Format??? Pin
Jeremy Hutchinson9-Jul-10 8:54
professionalJeremy Hutchinson9-Jul-10 8:54 
GeneralRe: String.Format??? Pin
Jörgen Andersson9-Jul-10 11:11
professionalJörgen Andersson9-Jul-10 11:11 
GeneralRe: String.Format??? Pin
CDP180211-Jul-10 20:43
CDP180211-Jul-10 20:43 
GeneralRe: String.Format??? Pin
Jason Christian22-Jul-10 9:05
Jason Christian22-Jul-10 9:05 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 5:09
mvePIEBALDconsult9-Jul-10 5:09 
GeneralRe: String.Format??? Pin
oggenok649-Jul-10 5:35
oggenok649-Jul-10 5:35 
GeneralRe: String.Format??? Pin
PIEBALDconsult9-Jul-10 5:40
mvePIEBALDconsult9-Jul-10 5:40 
GeneralRe: String.Format??? Pin
Steve Wellens9-Jul-10 5:45
Steve Wellens9-Jul-10 5:45 

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.