Click here to Skip to main content
15,915,172 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionDetect save from a VS2005 add-in Pin
Christian Wikander13-Apr-09 22:36
Christian Wikander13-Apr-09 22:36 
AnswerRe: Detect save from a VS2005 add-in Pin
dojohansen14-Apr-09 7:36
dojohansen14-Apr-09 7:36 
QuestionHelp with update Pin
hendrikbez13-Apr-09 19:20
hendrikbez13-Apr-09 19:20 
AnswerRe: Help with update Pin
Pete O'Hanlon13-Apr-09 21:55
mvePete O'Hanlon13-Apr-09 21:55 
GeneralRe: Help with update Pin
hendrikbez13-Apr-09 22:26
hendrikbez13-Apr-09 22:26 
GeneralRe: Help with update Pin
Eddy Vluggen13-Apr-09 23:11
professionalEddy Vluggen13-Apr-09 23:11 
GeneralRe: Help with update Pin
hendrikbez13-Apr-09 23:59
hendrikbez13-Apr-09 23:59 
GeneralRe: Help with update Pin
Eddy Vluggen14-Apr-09 1:13
professionalEddy Vluggen14-Apr-09 1:13 
GeneralRe: Help with update Pin
hendrikbez14-Apr-09 1:33
hendrikbez14-Apr-09 1:33 
GeneralRe: Help with update Pin
Eddy Vluggen14-Apr-09 6:16
professionalEddy Vluggen14-Apr-09 6:16 
GeneralRe: Help with update Pin
hendrikbez14-Apr-09 23:24
hendrikbez14-Apr-09 23:24 
GeneralRe: Help with update Pin
Eddy Vluggen15-Apr-09 0:11
professionalEddy Vluggen15-Apr-09 0:11 
QuestionConnecting C++.NET with WebService.. Pin
shaina223112-Apr-09 21:13
shaina223112-Apr-09 21:13 
QuestionDatabase connection Pin
EmZan11-Apr-09 2:21
EmZan11-Apr-09 2:21 
AnswerRe: Database connection Pin
0x3c011-Apr-09 2:41
0x3c011-Apr-09 2:41 
GeneralRe: Database connection Pin
EmZan11-Apr-09 3:01
EmZan11-Apr-09 3:01 
GeneralRe: Database connection Pin
0x3c011-Apr-09 3:17
0x3c011-Apr-09 3:17 
GeneralRe: Database connection Pin
EmZan11-Apr-09 6:15
EmZan11-Apr-09 6:15 
GeneralRe: Database connection Pin
Colin Angus Mackay11-Apr-09 6:25
Colin Angus Mackay11-Apr-09 6:25 
GeneralRe: Database connection Pin
EmZan12-Apr-09 20:58
EmZan12-Apr-09 20:58 
GeneralRe: Database connection Pin
Colin Angus Mackay12-Apr-09 22:57
Colin Angus Mackay12-Apr-09 22:57 
GeneralRe: Database connection Pin
EmZan12-Apr-09 23:16
EmZan12-Apr-09 23:16 
GeneralRe: Database connection Pin
Colin Angus Mackay12-Apr-09 23:20
Colin Angus Mackay12-Apr-09 23:20 
GeneralRe: Database connection Pin
EmZan12-Apr-09 23:36
EmZan12-Apr-09 23:36 
GeneralRe: Database connection Pin
Colin Angus Mackay12-Apr-09 23:52
Colin Angus Mackay12-Apr-09 23:52 
EmZan wrote:
connection pooling :
to keep track of last queried data cashed so that i will no use the database engine to execute a prev. executed query.


Nope. It keeps track of the previously query CONNECTION only so it doesn't have to reestablish a connection to the database. This makes it faster to establish a new connection. Any queries are done against the database, even if it is the same query as the previous time.

EmZan wrote:
and that is done using the DataAdapter Object(which fills the DataSet Object)
and that what i got from ur prev reply


I've never mentioned the DataAdapter. It is an evil thing.

EmZan wrote:
DataAdapter is automatically closes the connection after execution(reading or writing)


Well, it says it closes the connection, but just like everything else it simply returns it too the pool.

Connection Pooling happens on the SqlConnection object which everything that connects to a database must use. LINQ or not.


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.