Click here to Skip to main content
16,012,107 members
Home / Discussions / C#
   

C#

 
GeneralRe: About grid checkBox Pin
Prabhat00316-May-08 1:03
Prabhat00316-May-08 1:03 
QuestionC# MS Sql Express: share connection between threads? Pin
Michiel15-May-08 23:46
Michiel15-May-08 23:46 
AnswerRe: C# MS Sql Express: share connection between threads? Pin
originSH16-May-08 0:34
originSH16-May-08 0:34 
GeneralRe: C# MS Sql Express: share connection between threads? Pin
Michiel16-May-08 1:20
Michiel16-May-08 1:20 
GeneralRe: C# MS Sql Express: share connection between threads? Pin
originSH16-May-08 1:28
originSH16-May-08 1:28 
GeneralRe: C# MS Sql Express: share connection between threads? Pin
Michiel16-May-08 3:48
Michiel16-May-08 3:48 
AnswerRe: C# MS Sql Express: share connection between threads? Pin
The Nightcoder16-May-08 13:32
The Nightcoder16-May-08 13:32 
GeneralRe: C# MS Sql Express: share connection between threads? Pin
originSH18-May-08 22:10
originSH18-May-08 22:10 
PeterTheSwede wrote:
If I remember correctly, the current SQL Native Client (preferred when talking to SQL Server 2005) doesn't support connection pooling. This means you get a performance hit if you solve your problems by creating, opening and closing a separate connection each time you touch the database (each time you will cause negotiations between the client and SQL Server before you start doing actual work). If connection pooling was supported, this wouldn't be the case, meaning it would be the simplest solution and wouldn't be a performance issue (connection pooling makes it extremely fast to open/close new connections as a number of "closed" connections are kept open in the background, ready to use by the next attempt to open a new connection).


If you have MDAC installed it supports Connection Pooling just fine, which is why you always include MDAC along with the Native Client installer Smile | :) Heh it'd be extreamly painful making larger systems if it wasn't supported :/
GeneralRe: C# MS Sql Express: share connection between threads? Pin
The Nightcoder18-May-08 23:28
The Nightcoder18-May-08 23:28 
GeneralRe: C# MS Sql Express: share connection between threads? Pin
originSH18-May-08 23:56
originSH18-May-08 23:56 
GeneralRe: C# MS Sql Express: share connection between threads? [modified] Pin
Michiel20-May-08 23:44
Michiel20-May-08 23:44 
GeneralRe: C# MS Sql Express: share connection between threads? [modified] Pin
The Nightcoder21-May-08 2:58
The Nightcoder21-May-08 2:58 
GeneralRe: C# MS Sql Express: share connection between threads? Pin
Michiel21-May-08 3:33
Michiel21-May-08 3:33 
GeneralRe: C# MS Sql Express: share connection between threads? Pin
The Nightcoder21-May-08 3:43
The Nightcoder21-May-08 3:43 
AnswerRe: C# MS Sql Express: share connection between threads? Pin
The Nightcoder16-May-08 13:52
The Nightcoder16-May-08 13:52 
AnswerRe: C# MS Sql Express: share connection between threads? Pin
The Nightcoder16-May-08 14:28
The Nightcoder16-May-08 14:28 
QuestionDrawEllipse and FillEllipse methods Pin
NarVish15-May-08 23:11
NarVish15-May-08 23:11 
AnswerRe: DrawEllipse and FillEllipse methods Pin
Christian Graus15-May-08 23:28
protectorChristian Graus15-May-08 23:28 
AnswerRe: DrawEllipse and FillEllipse methods Pin
John_Adams15-May-08 23:32
John_Adams15-May-08 23:32 
AnswerRe: DrawEllipse and FillEllipse methods Pin
CPallini16-May-08 4:09
mveCPallini16-May-08 4:09 
Questioninternal protected problem Pin
Pankaj Garg15-May-08 23:11
Pankaj Garg15-May-08 23:11 
AnswerRe: internal protected problem Pin
Vikram A Punathambekar16-May-08 0:09
Vikram A Punathambekar16-May-08 0:09 
Questionthread safety using Interlocked Pin
George_George15-May-08 23:09
George_George15-May-08 23:09 
AnswerRe: thread safety using Interlocked Pin
Guffa16-May-08 1:39
Guffa16-May-08 1:39 
GeneralRe: thread safety using Interlocked Pin
George_George16-May-08 1:49
George_George16-May-08 1:49 

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.