Tagged Questions
The when tag has no wiki summary.
28
votes
5answers
2k 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 become clear on how ...
7
votes
8answers
593 views
when to use MVC on PHP?
ok i think i am pushing my self to far here, im createing a project in my own mvc even i dont know what mvc its self,
<?php
class init
{
function __construct()
{
...
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. ...
3
votes
3answers
93 views
jquery deferred turn failure into success
So in using jQuery deferreds and $.when to load many objects in parallel.
$.when(
a.ajax(), b.ajax(), c.ajax()
).then(
//do something when all are complete
complete();
);
Now, b.ajax() will ...
3
votes
1answer
261 views
when in haskell and erlang
I started off this morning trying to work out what the 'when' statement is used for in erlang. I know the below example is wrong:
do_larger() ->
io:format("Larger~n").
do_smaller() ->
...
3
votes
3answers
256 views
Why is in F# a dummy symbol literal needed between pipe and when?
I am new to F# and fiddling just around with it.
What get's me is:
let rec fact n =
match n with
| dummy when n < 2 -> 1
| _ -> n * fact (n - 1)
let x = 6
printfn "%d! = %d" x ...
3
votes
2answers
238 views
Stuck in a Clojure loop, need some guidance
I am stuck in a Clojure loop and need help to get out.
I first want to define a vector
(def lawl [1 2 3 4 5])
I do
(get lawl 0)
And get "1" in return. Now, I want a loop that get each number in ...
2
votes
1answer
82 views
How do you map a function to only certain elements in a list?
E.g. if you have a function (fun x -> x+1) and you want to map it to [1; 2; 3], but you only want to map it when x=1, so that the output is [2; 2; 3] - how do you do this?
Using OCaml, I tried
let ...
2
votes
2answers
63 views
XSLT Not Taking When Test Selection
I've been working on something for my boss, a website that displays the web-services of a ticketing system. The web-service spits out an XML file based on a query. My problem is, when I try to set ...
2
votes
3answers
145 views
'Characters only' check in xsl string?
How can i check if a string include only characters (XSLT File)?
<xsl:variable name="IsValid1">
<xsl:choose>
<xsl:when test="string-length(//FirstName) > 0 and ...
1
vote
1answer
36 views
Loop with each iteration only happening after jQuery deferred when/then possible without recursion?
I want to call jQuery deferred functions in a loop but each iteration should wait for the previous iteration to complete using the deferred when()
function (num_of_iterations) {
var arr = [];
...
1
vote
1answer
134 views
How to wait until nested async jQuery AJAX requests have finished?
I'm using jQuery and I have a loop of asynchronous AJAX requests. I know I can wait for them all to be finished by using the handy '$.when.apply(array_of_requests).then()' method.
But I also have ...
1
vote
0answers
92 views
ORacle SQLLDR Discard rows using WHEN clause not working
I am trying to load a text file, only those rows where 3rd column 'c_nbr' Doesn't END with 'ABCD'. Since WHEN clause is really primitive I could not use, trim/substring with it.
My second choice was ...
1
vote
1answer
146 views
How can I prohibit State change from Proposed to Active in TFS Requirement work-item based on value of another field?
I've added department approvals to the standard CMMI-Template Requirement work-item. I'd like to limit the System.State field such that it can only be changed from Proposed to Active when all ...
1
vote
2answers
1k views
MySQL SELECT CASE WHEN something THEN returning null
Table who
wid--name-------father---mother
1---Daisy------David----Liza
2---Jenny------Joe------Judy
3---Meggy-----Mike-----Manuela
4---Sarah------Joe------Judy
5---Chelsea----Bill------Hillary
...
1
vote
2answers
692 views
Help with MySQL and CASE WHEN with a range of values
I have an accounts table and a records table where accounts have multiple records. I would like to break down the account totals by "count of records" range. i.e. show the breakdown of
Count of ...
1
vote
3answers
347 views
optimizing the sql query by not repeating the math
Here is the query in Oracle I was trying to remove the redundant math operation from:
SELECT name,
CASE
when nvl(num1,0) + nvl(num2,0) - nvl(num3,0) > 0
THEN nvl(num1,0) + ...
1
vote
2answers
368 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 name="tokenize">
...
1
vote
5answers
188 views
When should I ask myself if my method is thread-safe or not?
When should I take it into consideration whether my method is thread-safe or not?
thanks,
kalem keki
1
vote
1answer
2k 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 something like this:
...
1
vote
3answers
4k 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 example where there ...
0
votes
1answer
42 views
MYSQL select mutual friends
My 'friends' table has the following columns: id, userID, userID2, state
userID and userID2 don't have a specific order of being put into the database.
I currently use this query to find a users ...
0
votes
1answer
35 views
Make jquery script 1.5.2 compatible with when function
I need to make this function
$.when(
self.image.fadeOut(self.options.animationSpeed),
self.aniImg.eq(0).fadeIn(self.options.animationSpeed)
).done(function () {
...
0
votes
1answer
27 views
Mysql Case When for different tables
Can we use mysql case when to query different tables, for example after FROM or JOIN ?
So basically my database has post_type which I'm gonna link to other tables such as blogs, photos, etc, and I ...
0
votes
2answers
116 views
Failed to install JBOSS and GlassFish on Eclipse Indigo - For Java EE developers
I install Eclipe Indigo for Java EE devlopers.
I tried to install apllication sever glassfish or Jboss and consecutive failed to install them.
1.Create new server - select Download addtional server ...
0
votes
2answers
68 views
Sql combine WHEN and IF statement with multiple parameters
How to combine Q1 and Q2 into someting like Q5 (But working!) ? Plse? I'M stuck... SQL Server 2008 R2
Please have a look what I've tried so far:
--Q1 does execute without errors:
DECLARE ...
0
votes
1answer
51 views
Case when statement in SSRS (IIF)
I need to create a dynamic chart header which references parameter titles. Initially I was using the following syntax:
="City:" + Parameters!City.Value + "Store:" + Parameters!Store.Value
However ...
0
votes
0answers
95 views
PHP - Google Calendar Sync - Multiple When Objects
I'm trying to add multiple dates to a single event, but when I do so, only the first When object will be added on my Google Calendar.
In the below example, the print_r at the end will display all of ...
0
votes
0answers
65 views
Some dynamic flexibility in JSP If Else and Sessions
I'm a little mixed up on syntax with quotes (' vs. ") and all.
I would really love to be able to test for a session attribute after another page set it. I don't want to learn anything too new like ...
0
votes
1answer
170 views
libclang.dylib causing Xcode to crash
Sometimes when I try and build a project in Xcode, roughly 1 in 10 times, it crashes and quits. I then get an error box which says: "Xcode quit unexpectedly while using the libclang.dylib plug-in". ...
0
votes
2answers
39 views
Multiple ajax requests in jQuery with many arguments in $.when method
Can I make multiples jquery ajax requests with the $.when method, without know the number of arguments? Look my code:
var ajax_loaded = new Array();
$('.chart ...
0
votes
2answers
129 views
Oracle/SQL - Select records on at specific sysdate times
I have a query that runs multiple times a day, the issue though is we want the query to only return result when it's run at certain times. So for this example I only want records to be returned when ...
0
votes
2answers
72 views
How Can I Reduce “When” Statement in XSLT
Hello I am writing a XSLT statement where I need to implement 1500 conditional statements like -
<xsl:when test="ID = '51'">
<br>
<xsl:text>background: ...
0
votes
0answers
76 views
Move up Fixed Div
I have a div with fixed position in the bottom of the page (like a toolbar) Everything works fine but I don't know how to move it upward when it reaches the footer. I want to make the div stay above ...
0
votes
1answer
390 views
LINQ to SQL lambda exp. OrderBy, Case When,Dynamic Where
I'm using linq to sql and linq dynamic where and order by.
I want to convert the code below(ASP) to C#.net
function getTestimonialList(statusCd)
sWhere = ""
if statusCd <> "" ...
0
votes
2answers
340 views
how to call a function after a set of multiple ajax request complete on jquery?
i am calling multiple ajax requests at a time. i have a single function which calls the server and gets the response and processes it. Based on the parameters passed to it, i will decide what to be ...
0
votes
2answers
2k views
iReport - Print when expression to control whole layout or not
I am in an urgent need of having the print layout thing based on the one fied condition. Let us say I have a shipment label layout with 50 fields in it and which is working. But before I print that, ...
0
votes
2answers
2k views
Mysql query select case when true insert
does anybody know how to do this syntax below in mysql?
without Stored Procedure
and in single query only
SELECT CASE
WHEN COUNT(v.value) = 0 THEN (
INSERT INTO tbl_v (fid, uid, VALUE)
...
0
votes
2answers
587 views
Ignoring a column when condition doesnt match in select query - SQL-Oracle
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 below
Table : XYZ
Name ID ...
-1
votes
2answers
47 views
XSL condition statement
i have a problem with this statement :
<xsl:choose>
<xsl:when test="cars[@id='1']">
<xsl:choose>
<xsl:when test="cars[@id='1']='1'">true</xsl:when>
...