Click here to Skip to main content
15,889,096 members
Home / Discussions / Database
   

Database

 
AnswerRe: Multiple Instances - SQLSERVER Pin
Mike Dimmick16-Mar-07 6:22
Mike Dimmick16-Mar-07 6:22 
GeneralRe: Multiple Instances - SQLSERVER Pin
clint198216-Mar-07 8:26
clint198216-Mar-07 8:26 
Questionstored procedures Vs dynamic SQL Pin
digsy_16-Mar-07 3:40
digsy_16-Mar-07 3:40 
AnswerRe: stored procedures Vs dynamic SQL Pin
Pete O'Hanlon16-Mar-07 3:44
mvePete O'Hanlon16-Mar-07 3:44 
GeneralRe: stored procedures Vs dynamic SQL Pin
digsy_16-Mar-07 3:56
digsy_16-Mar-07 3:56 
GeneralRe: stored procedures Vs dynamic SQL Pin
Pete O'Hanlon16-Mar-07 4:09
mvePete O'Hanlon16-Mar-07 4:09 
GeneralRe: stored procedures Vs dynamic SQL Pin
digsy_16-Mar-07 4:51
digsy_16-Mar-07 4:51 
GeneralRe: stored procedures Vs dynamic SQL Pin
Pete O'Hanlon16-Mar-07 13:02
mvePete O'Hanlon16-Mar-07 13:02 
Short circuiting simply refers to the case where a boolean condition halts before it evaluates the next part. A simple C# demonstration should show this:
DateTime? dtToday = null;
if (dtToday == null || dtToday == DateTime.Now)
The second part never executes because dtToday is null and so the conditions for an or statement is satisfied. In the case of an AND condition, the second part of the statement would not be executed if the first part is false.

Deja View - the feeling that you've seen this post before.

AnswerRe: stored procedures Vs dynamic SQL Pin
Mike Dimmick16-Mar-07 6:44
Mike Dimmick16-Mar-07 6:44 
QuestionMultiple Instances - SQLSERVER Pin
clint198216-Mar-07 3:39
clint198216-Mar-07 3:39 
AnswerRe: Multiple Instances - SQLSERVER Pin
Hesham Amin16-Mar-07 9:01
Hesham Amin16-Mar-07 9:01 
Questionhow we can use stored proceder with asp.net Pin
jayvaishnav8216-Mar-07 2:42
jayvaishnav8216-Mar-07 2:42 
AnswerRe: how we can use stored proceder with asp.net Pin
kubben16-Mar-07 2:47
kubben16-Mar-07 2:47 
AnswerRe: how we can use stored proceder with asp.net Pin
Marcus J. Smith16-Mar-07 2:47
professionalMarcus J. Smith16-Mar-07 2:47 
AnswerRe: how we can use stored proceder with asp.net Pin
Colin Angus Mackay16-Mar-07 3:37
Colin Angus Mackay16-Mar-07 3:37 
JokeRe: how we can use stored proceder with asp.net Pin
LongRange.Shooter16-Mar-07 7:48
LongRange.Shooter16-Mar-07 7:48 
GeneralRe: how we can use stored proceder with asp.net Pin
jayvaishnav8216-Mar-07 20:01
jayvaishnav8216-Mar-07 20:01 
GeneralRe: how we can use stored proceder with asp.net Pin
Colin Angus Mackay16-Mar-07 23:50
Colin Angus Mackay16-Mar-07 23:50 
Questioncopy data between 2 instances Pin
Ista16-Mar-07 2:35
Ista16-Mar-07 2:35 
AnswerRe: copy data between 2 instances Pin
kubben16-Mar-07 2:43
kubben16-Mar-07 2:43 
GeneralRe: copy data between 2 instances Pin
Ista16-Mar-07 3:08
Ista16-Mar-07 3:08 
GeneralRe: copy data between 2 instances Pin
kubben16-Mar-07 3:21
kubben16-Mar-07 3:21 
GeneralRe: copy data between 2 instances Pin
Colin Angus Mackay16-Mar-07 3:38
Colin Angus Mackay16-Mar-07 3:38 
QuestionMultiple User tables? Pin
kbalias16-Mar-07 1:41
kbalias16-Mar-07 1:41 
AnswerRe: Multiple User tables? Pin
N a v a n e e t h16-Mar-07 1:50
N a v a n e e t h16-Mar-07 1:50 

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.