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

Database

 
GeneralRe: How to convert total database columns datetime to date in the format of dd-mm-yyyy Pin
TarunKumarSusarapu31-Jan-17 1:07
professionalTarunKumarSusarapu31-Jan-17 1:07 
GeneralRe: How to convert total database columns datetime to date in the format of dd-mm-yyyy Pin
Richard Deeming31-Jan-17 2:29
mveRichard Deeming31-Jan-17 2:29 
GeneralRe: How to convert total database columns datetime to date in the format of dd-mm-yyyy Pin
TarunKumarSusarapu1-Feb-17 18:09
professionalTarunKumarSusarapu1-Feb-17 18:09 
GeneralRe: How to convert total database columns datetime to date in the format of dd-mm-yyyy Pin
Richard Deeming2-Feb-17 2:04
mveRichard Deeming2-Feb-17 2:04 
QuestionUsing Pooling or SqlConnection object variable is better ? Pin
MrKBA24-Jan-17 22:43
MrKBA24-Jan-17 22:43 
AnswerRe: Using Pooling or SqlConnection object variable is better ? Pin
Tim Carmichael25-Jan-17 2:31
Tim Carmichael25-Jan-17 2:31 
GeneralRe: Using Pooling or SqlConnection object variable is better ? Pin
MrKBA25-Jan-17 20:30
MrKBA25-Jan-17 20:30 
AnswerRe: Using Pooling or SqlConnection object variable is better ? Pin
Richard Deeming25-Jan-17 3:26
mveRichard Deeming25-Jan-17 3:26 
Create the connection as late as possible, and wrap it in a using block to ensure that it's always disposed of properly.

Don't disable connection pooling, since the underlying network connections can be expensive to set up and tear down. The connection pool is there to improve the performance of your code!

Trying to share a single connection object across multiple threads will only lead to errors. To avoid the errors, you'd have to synchronise access to the shared connection, which will significantly degrade the performance of your code.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Using Pooling or SqlConnection object variable is better ? Pin
MrKBA25-Jan-17 20:29
MrKBA25-Jan-17 20:29 
GeneralRe: Using Pooling or SqlConnection object variable is better ? Pin
Richard Deeming26-Jan-17 1:38
mveRichard Deeming26-Jan-17 1:38 
GeneralRe: Using Pooling or SqlConnection object variable is better ? Pin
MrKBA26-Jan-17 1:39
MrKBA26-Jan-17 1:39 
QuestionRegularExpressions in SQL Server Pin
indian14323-Jan-17 12:50
indian14323-Jan-17 12:50 
AnswerRe: RegularExpressions in SQL Server Pin
Richard MacCutchan23-Jan-17 21:52
mveRichard MacCutchan23-Jan-17 21:52 
AnswerRe: RegularExpressions in SQL Server Pin
Richard Deeming24-Jan-17 2:29
mveRichard Deeming24-Jan-17 2:29 
QuestionSQl, Oracle Database Pin
Member 1295956019-Jan-17 23:59
Member 1295956019-Jan-17 23:59 
SuggestionRe: SQl, Oracle Database Pin
ZurdoDev24-Jan-17 3:20
professionalZurdoDev24-Jan-17 3:20 
QuestionJOIN Problem Pin
Kevin Marois19-Jan-17 9:01
professionalKevin Marois19-Jan-17 9:01 
AnswerRe: JOIN Problem Pin
ZurdoDev19-Jan-17 9:22
professionalZurdoDev19-Jan-17 9:22 
GeneralRe: JOIN Problem Pin
Kevin Marois19-Jan-17 9:25
professionalKevin Marois19-Jan-17 9:25 
GeneralRe: JOIN Problem Pin
ZurdoDev19-Jan-17 9:30
professionalZurdoDev19-Jan-17 9:30 
GeneralRe: JOIN Problem Pin
Kevin Marois19-Jan-17 9:32
professionalKevin Marois19-Jan-17 9:32 
GeneralRe: JOIN Problem Pin
ZurdoDev19-Jan-17 9:35
professionalZurdoDev19-Jan-17 9:35 
GeneralRe: JOIN Problem Pin
Kevin Marois19-Jan-17 9:45
professionalKevin Marois19-Jan-17 9:45 
GeneralRe: JOIN Problem Pin
ZurdoDev19-Jan-17 9:50
professionalZurdoDev19-Jan-17 9:50 
GeneralRe: JOIN Problem Pin
Kevin Marois19-Jan-17 9:51
professionalKevin Marois19-Jan-17 9:51 

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.