Tagged Questions

1
vote
2answers
45 views

When test hanging in an infinite loop

I'm tokenising a string with XSLT 1.0 and trying to prevent empty strings from being recognised as tokens. Here's the entire function, based on XSLT Cookbook: <xsl:template nam …
0
votes
2answers
78 views

Ignoring a column when condition doesnt match in select query - SQL-Oracle

Hi, My requirement is to display a Column in select query when a condition satisfies and not to display the column when condition is not matched. For eg : In this simple table be …
0
votes
5answers
143 views

When should I ask myself if my method is thread-safe or not?

Hi, When should I take it into consideration whether my method is thread-safe or not? thanks, kalem keki
1
vote
1answer
200 views

Alternative to MySQL CASE/WHEN?

I'm trying to select some integer values in MySQL. Several of the values are zero, which I want to grab as an empty string, and grab the integer values when available. So I have s …
20
votes
5answers
1k views

Why doesn’t C# have support for first pass exception filtering?

Note: this is not a duplicate of Jeff's question. That question asked "Is an equivalent?" I know there isn't, and I want to know why! The reason I ask is that I've only just beco …
1
vote
3answers
459 views

Multiple WHEN inside no-expression CASE in SQL?

DECLARE @TestVal int SET @TestVal = 5 SELECT CASE WHEN @TestVal <=3 THEN 'Top 3' ELSE 'Other' END I saw this sample code online but I couldn't find an e …