Tagged Questions
The case tag has no wiki summary.
66
votes
13answers
232k views
How do you perform an IF…THEN in an SQL SELECT?
How do I perform an IF...THEN in an SQL SELECT statement?
For example;
SELECT IF(Obsolete = 'N' or InStock = 'Y';1;0) as Salable, * FROM Product
48
votes
16answers
28k views
What are some free and/or open source Requirements Management tools?
I am looking for free and/or open source requirements management tools. Does anyone have any experience with these tools and can recommend one or two? Thanks.
36
votes
10answers
32k views
Using Case/Switch and GetType to determine the object
If you want to switch on a type of object, what is the best way to do this?
Code snippet
private int GetNodeType(NodeDTO node)
{
switch (node.GetType())
{
case typeof(CasusNodeDTO):
...
24
votes
8answers
69k views
SQL Switch/Case in where clause
I tried searching around but couldn't find anything that would help me out.
I'm trying to do this in SQL:
declare @locationType varchar(50);
declare @locationID int;
SELECT column1, column2
FROM ...
23
votes
6answers
4k views
How can I have lowercase routes in ASP.NET MVC?
How can I have lowercase, plus underscore if possible, routes in ASP.NET MVC? So that I would have /dinners/details/2 call DinnersController.Details(2) and, if possible, /dinners/more_details/2 call ...
21
votes
15answers
3k views
Why Switch/Case and not If/Else If?
This question in mainly pointed at C/C++, but I guess other languages are relevant as well.
I can't understand why is switch/case still being used instead of if/else if. It seems to me much like ...
17
votes
4answers
4k views
Python Case Insensitive Replace
What's the easiest way to do a case-insensitive str.replace in Python?
14
votes
4answers
609 views
Why do case class companion objects extend FunctionN?
When you create a case class, the compiler creates a corresponding companion object with a few of the case class goodies: an apply factory method matching the primary constructor, equals, hashCode, ...
14
votes
1answer
895 views
Generated Doctrine models respect case, but generated Yaml does not
Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected.
I am generating models from the db (MySQL 4) using:
Doctrine::generateModelsFromDb($pathToModels);
Then ...
13
votes
13answers
1k views
Why do we need break after case statements?
Why doesn't the compiler automatically put break statements after each code block in the switch? Is it for historical reasons? When would you want multiple code blocks to execute?
12
votes
4answers
2k views
Delphi Performance: Case Versus If
I guess there might be some overlapping with previous SO questions, but I could not find a Delphi-specific question on this topic.
Suppose that you want to check if an unsigned 32-bit integer ...
11
votes
1answer
3k views
Ruby string compare regardless of string case
I need to check for
"Apple" = "Apple" TRUE
"Apple" = "APPLE" TRUE
"Apple" = "Apple1" FALSE
in ruby
I need a string comparison but for the check to not be case sensitive.
thks
11
votes
5answers
9k views
T-SQL Where Clause Case Statement Optimization (optional parameters to StoredProc)
I've been battling this one for a while now. I have a stored proc that takes in 3 parameters that are used to filter. If a specific value is passed in, I want to filter on that. If -1 is passed in, ...
10
votes
2answers
479 views
matching (and binding) two exception classes in one case statement in scala 2.7?
I have the following code:
try {
< ... some JSON parsing code .. >
} catch {
case e:ClassCastException => throw new ParseException(body, e)
case ...
9
votes
3answers
258 views
How to pattern match a class with multiple argument lists?
Consider this class:
class DateTime(year: Int, month: Int, day: Int)(hour: Int, minute: Int, second: Int)
how would the unapply method look like, if I would like to match against something like:
...
9
votes
6answers
1k views
C# Switch-case string starting with
Is there any way to make a case condition in a switch statement where you say if a string begins with something?
ex
Switch (mystring)
{
case("abc")://String begins with abc (abcd or abc1 or abcz ...
9
votes
3answers
5k views
How to get 'switch-case' statement functionality in Django templates?
I found a link to have a 'switch' tag in Django templates, but I was wondering if this can be somehow achieved without it. Using only the stuff which comes with Django? Basically is there other way ...
9
votes
4answers
20k views
How to use a switch case 'or' in PHP?
is there such thing (in PHP anyway) for an OR operator in a switch case?
something like..
switch ($value) {
case 1 || 2:
echo 'the value is either 1 or 2';
break;
}
8
votes
5answers
2k views
scala case classes questions
I have two questions regarding the '::' case class.
:: can be used as
case head :: tail => ...
How does it work? Meaning, what is exactly the flow that Scala uses to match a List instance with ...
7
votes
4answers
143 views
Perl regex replace in same case
If you have a simple regex replace in perl as follows:
($line =~ s/JAM/AAA/g){
how would I modify it so that it looks at the match and makes the replacement the same case as the match for example:
...
7
votes
5answers
542 views
Python: getting filename case as stored in Windows?
Though Windows is case insensitive, it does preserve case in filenames. In Python, is there any way to get a filename with case as it is stored on the file system?
E.g., in a Python program I have ...
6
votes
3answers
213 views
How can I transform a Map to a case class in Scala?
If I have a Map[String,String]("url" -> "xxx", "title" -> "yyy"), is there an way to generically transform it into a case class Image(url:String, title:String)?
I can write a helper:
object ...
6
votes
1answer
477 views
Which things around case classes will be removed after Scala 2.9 exactly?
I know that the are some changes planned regarding case classes, like disallowing inheritance between them:
scala> case class Foo()
defined class Foo
scala> case class Bar() extends Foo()
...
6
votes
2answers
236 views
Case insensitivity in selectors?
I am trying to use jQuery for XML processing. One of the problem that I am stuck with jQuery is it is case insensitive in processing tags and attribute.
For e.g., consider the following code:
...
6
votes
2answers
346 views
Ruby `when' keyword does not use == in case statement. What does it use?
x == User returns true, but case x statement does not run the block associated with User. What's happening here?
u = User.new
# => #<User:0x00000100a1e948>
x = u.class
# => User
x == ...
6
votes
1answer
2k views
VHDL Case/When: multiple cases, single clause
Inside a process I have something like this:
CASE res IS
WHEN "00" => Y <= A;
WHEN "01" => Y <= A;
WHEN "10" => Y <= B;
WHEN "11" => Y <= C;
WHEN OTHERS => Y ...
6
votes
3answers
195 views
In haskell, combining “case” and “>>=”
I have a lot of code of the style:
do
x <- getSomething
case x of
this -> ...
that -> ...
other -> ...
Any way of me combining the "x <- ..." and "case x of" lines to ...
6
votes
2answers
324 views
c# switch statement is return suitable to replace break
Is this an appropriate way to handle c# switch statements or is an explicit break required still? reference
public static string ToRegistryString(AliceKey.AliceKeyPaths aliceKeyPath)
{
...
6
votes
14answers
490 views
Are you using “pen and paper” during programming? [closed]
There are many CASE tools, many software for diagrams, drawing, documenting. But can they replace old good paper?
6
votes
2answers
135 views
Why are parenscript functions changed to all lowercase?
When using parenscript if I execute
(parenscript:ps
(slot-value ($ "#mytextarea") 'selectionStart))
It produces the javascript
$('#mytextarea').selectionstart;
Note that selectionStart is ...
6
votes
9answers
3k views
Java switch cases: with or without braces?
Consider the following two snippets, with braces:
switch (var)
{
case FOO:
{
x = x + 1;
break;
}
case BAR:
{
y = y + 1;
break;
}
}
Without braces:
switch (var)
{
...
5
votes
3answers
147 views
using CASE WHEN in select statment
I am using following for select statment with case. The column to which the CASE is applied has True, False and Null values. I am trying to display True for True and False for both False and Null. ...
5
votes
4answers
151 views
How does erlang handle case statements mixed with tail recursion
Let's say I have this code here:
do_recv_loop(State) ->
receive
{do,Stuff} ->
case Stuff of
one_thing ->
do_one_thing(),
do_recv_loop(State);
...
5
votes
3answers
617 views
Why “final static int” can be used as a switch's case constant but not “final static <your enum>”
Why is this int switch valid:
public class Foo {
private final static int ONE = 1;
private final static int TWO = 2;
public static void main(String[] args) {
int value = 1;
...
5
votes
3answers
312 views
C: Diagramming A Large Library
Is there any tools to assist in diagramming a large C library? I am working on a project to port an existing C library to C++. The C library is largely undocumented with no diagrams. I would like to ...
5
votes
4answers
192 views
Fooling Ruby's case operator, ===, with proxy objects
I'm trying to make a proxy object that transfers almost all method calls to a child object, essentially the delegator pattern. For the most part, I'm just using a BasicObject and passing every call ...
5
votes
2answers
2k views
Use Java and RegEx to convert casing in a string
Problem: Turn "my testtext TARGETSTRING my testtext" into "my testtext targetstring my testtext"
Perl supports the "\L"-operation which can be used in the replacement-string.
The Pattern-Class does ...
5
votes
11answers
2k views
Simplifying (aliasing) T-SQL CASE statements. Any improvement possible?
As you can see, this sucks big time. Any alternative? I've tried using the column alias in the group by clause to no avail.
select count(callid) ,
case
when callDuration > 0 and ...
5
votes
5answers
502 views
How add “or” in case statements?
This is what I want to do:
switch(myvar)
{
case: 2 or 5:
...
break;
case: 7 or 12:
...
break;
...
}
I tried with "case: 2 || 5" ,but it didn't work.
The purpose is to ...
4
votes
2answers
80 views
Computed Column (COALESCE vs CASE vs ISNULL)
I posted a similar question a while back and now as I need to update this code, I am back to ask a follow-on question. Previous question is here:
Computed column based on nullable columns
My data ...
4
votes
2answers
124 views
Using new with Scala final case class
In Chapter 22 of "Programming in Scala" book, the :: class (cons) is defined as
final case class ::[T](hd: T, tl: List[T]) extends List[T] {
//...
}
The :: method in class List is defined as ...
4
votes
3answers
188 views
Haskell multiple statement efficiency
Is this efficient for checking multiple statements in Haskell? Or this there a better way?
case ((x > -10) && (x < 20),x /= 9,(x `mod` 2) == 0,x) of
(False,_,_,_) -> error "Not ...
4
votes
3answers
151 views
Clojure range-case macro
In the book "The Scheme Programming Language, 4th Edition", by R. Kent Dybvig, on page 86, the author has written a define-syntax (Scheme macro) for a case statement that accepts ranges for its ...
4
votes
1answer
196 views
Nested Scala matchers why Some(Some(1),1) can't match?
I've run into a minor problem whilst coding, it seems that nested matching doesn't work, it seems a strange limitation and I'm sure I'm just being foolish.
An example of the behaviour follows:
...
4
votes
5answers
143 views
Case-Label question in C/C++
I came across this code
#include<stdio.h>
int main()
{
int a=1;
switch(a)
{ int b=20;
case 1: printf("b is %d\n",b);
break;
...
4
votes
3answers
611 views
Ruby: conditional matrix? case with multiple conditions?
In ruby, I was wondering if there's a way to do the following:
I have basically a matrix of four possible outcomes:
A is True, B is True
A is True, B is False
A is False, B is True
A is False, B is ...
4
votes
5answers
252 views
Why this `case` is a must needed?
object Test1 {
def main(args: Array[String]) {
val list = List("a", "b")
list map { x ⇒ println(x) }
list map { case x ⇒ println(x) }
val list2 = List(("aa", ...
4
votes
2answers
265 views
Conditional where statement in T-SQL
I've got a table that returns the history of a value, as well as the current one, each with a date.
The oldest date is the main record. If the value is changed, a new record is created, with the old ...
4
votes
1answer
113 views
How to write IF(expr1,expr2,expr3) in mssql
There is IF(expr1,expr2,expr3) in my sql.
How to accomplish it in MS SQL?
4
votes
4answers
132 views
query with case column
In a query, I have a column like this:
case when X = 1 then
case when Y <> 0 then YY else XX end
else ZZ
end as MyColumn
Is there a way, in another column, to check the above column ...