Click here to Skip to main content
15,907,000 members
Home / Discussions / C#
   

C#

 
GeneralRe: Find unique strings for a string array Pin
George_George25-Dec-08 20:03
George_George25-Dec-08 20:03 
GeneralRe: Find unique strings for a string array Pin
Dragonfly_Lee25-Dec-08 20:22
Dragonfly_Lee25-Dec-08 20:22 
AnswerRe: Find unique strings for a string array Pin
DanB198323-Dec-08 0:28
DanB198323-Dec-08 0:28 
GeneralRe: Find unique strings for a string array Pin
George_George23-Dec-08 22:37
George_George23-Dec-08 22:37 
GeneralRe: Find unique strings for a string array Pin
DanB198324-Dec-08 0:22
DanB198324-Dec-08 0:22 
GeneralRe: Find unique strings for a string array Pin
George_George24-Dec-08 20:51
George_George24-Dec-08 20:51 
Questionhow can made c#.net messenger? Pin
mohammedali200622-Dec-08 10:48
mohammedali200622-Dec-08 10:48 
AnswerRe: how can made c#.net messenger? Pin
Christian Graus22-Dec-08 11:00
protectorChristian Graus22-Dec-08 11:00 
GeneralRe: how can made c#.net messenger? Pin
EliottA22-Dec-08 11:09
EliottA22-Dec-08 11:09 
GeneralRe: how can made c#.net messenger? Pin
Christian Graus22-Dec-08 11:18
protectorChristian Graus22-Dec-08 11:18 
GeneralRe: how can made c#.net messenger? Pin
EliottA22-Dec-08 11:20
EliottA22-Dec-08 11:20 
GeneralRe: how can made c#.net messenger? Pin
PIEBALDconsult22-Dec-08 13:10
mvePIEBALDconsult22-Dec-08 13:10 
GeneralRe: how can made c#.net messenger? Pin
Christian Graus22-Dec-08 13:45
protectorChristian Graus22-Dec-08 13:45 
GeneralRe: how can made c#.net messenger? Pin
PIEBALDconsult22-Dec-08 14:25
mvePIEBALDconsult22-Dec-08 14:25 
GeneralRe: how can made c#.net messenger? Pin
Christian Graus22-Dec-08 17:01
protectorChristian Graus22-Dec-08 17:01 
GeneralRe: how can made c#.net messenger? Pin
PIEBALDconsult23-Dec-08 12:22
mvePIEBALDconsult23-Dec-08 12:22 
QuestionEfficient way of accessing a Boolean from SQL Server Pin
Andreas_198322-Dec-08 9:35
Andreas_198322-Dec-08 9:35 
AnswerRe: Efficient way of accessing a Boolean from SQL Server Pin
Not Active22-Dec-08 10:02
mentorNot Active22-Dec-08 10:02 
AnswerRe: Efficient way of accessing a Boolean from SQL Server Pin
shea-c422-Dec-08 10:24
shea-c422-Dec-08 10:24 
GeneralRe: Efficient way of accessing a Boolean from SQL Server Pin
Andreas_198322-Dec-08 10:59
Andreas_198322-Dec-08 10:59 
GeneralRe: Efficient way of accessing a Boolean from SQL Server Pin
Mycroft Holmes22-Dec-08 15:07
professionalMycroft Holmes22-Dec-08 15:07 
GeneralRe: Efficient way of accessing a Boolean from SQL Server Pin
jchandramouli22-Dec-08 18:41
jchandramouli22-Dec-08 18:41 
Hi Mycroft,

"If the column is a bit data type then it will always return 0/1 never a null" => This is a false statement. I tried using the following query and in all three executions the IsActive field is null.

DECLARE @tb TABLE(UID INT ,IsActive BIT)
INSERT INTO @tb (UID) SELECT 1
SELECT * FROM @tb

DECLARE @tb TABLE(UID INT ,IsActive BIT)
INSERT INTO #Temp (UID) SELECT 1
SELECT * FROM #Temp
DROP TABLE #Temp

DECLARE @tb TABLE(UID INT ,IsActive BIT)
INSERT INTO Temp (UID) SELECT 1
SELECT * FROM Temp
DROP TABLE Temp

please correct me if i am wrong.

Mouli.
GeneralRe: Efficient way of accessing a Boolean from SQL Server Pin
Mycroft Holmes22-Dec-08 18:50
professionalMycroft Holmes22-Dec-08 18:50 
QuestionVS2008 and Updating controls ? [modified] Pin
Mike Bluett22-Dec-08 8:43
Mike Bluett22-Dec-08 8:43 
AnswerRe: VS2008 and Updating controls ? Pin
Not Active22-Dec-08 10:14
mentorNot Active22-Dec-08 10:14 

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.