Click here to Skip to main content
15,926,596 members
Home / Discussions / Database
   

Database

 
QuestionSQL Mail Pin
Arghya_mp30-Aug-06 0:27
Arghya_mp30-Aug-06 0:27 
AnswerRe: SQL Mail Pin
kumarprabhakar7430-Aug-06 2:35
kumarprabhakar7430-Aug-06 2:35 
QuestionSQL Query Pin
aaraaayen29-Aug-06 20:18
aaraaayen29-Aug-06 20:18 
AnswerRe: SQL Query Pin
_AK_29-Aug-06 23:02
_AK_29-Aug-06 23:02 
GeneralRe: SQL Query Pin
aaraaayen29-Aug-06 23:57
aaraaayen29-Aug-06 23:57 
GeneralRe: SQL Query Pin
_AK_30-Aug-06 0:07
_AK_30-Aug-06 0:07 
QuestionHow to maintain isolation level in MSSQL SERVER 2000? Pin
param thaker29-Aug-06 19:12
param thaker29-Aug-06 19:12 
AnswerRe: How to maintain isolation level in MSSQL SERVER 2000? Pin
Mike Dimmick30-Aug-06 0:18
Mike Dimmick30-Aug-06 0:18 
Best practice is to use a separate connection for every logical database query (if you have a lot of queries in the same function, it's fine to use the same connection for all of them, but you shouldn't use the same connection object in different functions). Ensure that you Dispose the connections when you've finished with them.

ADO.NET has connection pooling support which is enabled by default. This will avoid the overhead of connecting unless there are no free connections in the pool.

Your error is occurring because another thread, processing another request, already has a DataReader open on the connection, and that's not allowed.

Stability. What an interesting concept. -- Chris Maunder

GeneralRe: How to maintain isolation level in MSSQL SERVER 2000? Pin
param thaker30-Aug-06 3:07
param thaker30-Aug-06 3:07 
QuestionBULK INSERT with CONVERT or CAST? Pin
Yong Yau29-Aug-06 16:36
Yong Yau29-Aug-06 16:36 
AnswerRe: BULK INSERT with CONVERT or CAST? Pin
Sage30-Aug-06 14:33
Sage30-Aug-06 14:33 
GeneralRe: BULK INSERT with CONVERT or CAST? Pin
Yong Yau31-Aug-06 16:01
Yong Yau31-Aug-06 16:01 
GeneralRe: BULK INSERT with CONVERT or CAST? Pin
Sage1-Sep-06 0:17
Sage1-Sep-06 0:17 
Questionsql Table Lookup best methods? Pin
ronhawker29-Aug-06 12:31
ronhawker29-Aug-06 12:31 
AnswerRe: sql Table Lookup best methods? Pin
kumarprabhakar7430-Aug-06 2:40
kumarprabhakar7430-Aug-06 2:40 
QuestionError In Visul C++ .net About Oledb Pin
javad_200529-Aug-06 10:20
javad_200529-Aug-06 10:20 
AnswerRe: Error In Visul C++ .net About Oledb Pin
Mike Dimmick29-Aug-06 11:52
Mike Dimmick29-Aug-06 11:52 
QuestionSql database access Pin
sgeezee29-Aug-06 9:11
sgeezee29-Aug-06 9:11 
AnswerRe: Sql database access Pin
Stephen McGuire29-Aug-06 12:01
Stephen McGuire29-Aug-06 12:01 
GeneralRe: Sql database access Pin
sgeezee30-Aug-06 3:13
sgeezee30-Aug-06 3:13 
Questionsmalldatetime in datagrid Pin
TheJudeDude29-Aug-06 8:07
TheJudeDude29-Aug-06 8:07 
AnswerRe: smalldatetime in datagrid Pin
Stephen McGuire29-Aug-06 12:09
Stephen McGuire29-Aug-06 12:09 
GeneralRe: smalldatetime in datagrid Pin
TheJudeDude29-Aug-06 15:25
TheJudeDude29-Aug-06 15:25 
GeneralRe: smalldatetime in datagrid Pin
Stephen McGuire30-Aug-06 8:48
Stephen McGuire30-Aug-06 8:48 
GeneralRe: smalldatetime in datagrid Pin
TheJudeDude30-Aug-06 11:41
TheJudeDude30-Aug-06 11:41 

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.