Click here to Skip to main content
15,904,934 members
Home / Discussions / Database
   

Database

 
GeneralRe: Connection from Crystal Report to DataSet Pin
Pablopablo9-Mar-04 10:00
Pablopablo9-Mar-04 10:00 
GeneralRe: Connection from Crystal Report to DataSet Pin
DustInTheWind10-Mar-04 5:54
DustInTheWind10-Mar-04 5:54 
GeneralRe: Connection from Crystal Report to DataSet Pin
DustInTheWind10-Mar-04 7:29
DustInTheWind10-Mar-04 7:29 
GeneralColumns failing to save data on insert Pin
Mike Osbahr2-Mar-04 12:25
Mike Osbahr2-Mar-04 12:25 
GeneralExport a DataSet to a NEW Excel File Pin
Jeff Monheiser2-Mar-04 3:42
Jeff Monheiser2-Mar-04 3:42 
GeneralRe: Export a DataSet to a NEW Excel File Pin
John Kuhn2-Mar-04 12:43
John Kuhn2-Mar-04 12:43 
GeneralDataSet object : not disposed Pin
mxcad2-Mar-04 3:36
sussmxcad2-Mar-04 3:36 
GeneralRe: DataSet object : not disposed Pin
Mike Dimmick2-Mar-04 6:30
Mike Dimmick2-Mar-04 6:30 
Yes, you didn't wait for a garbage collection to happen that required your finalizer to be called.

The GC presently runs finalizers in a queue using a dedicated finalizer thread. An object is added to this queue (called the freachable queue by the CLR people and some of the documentation) when the garbage collector collects the object (the memory actually survives the garbage collection; the memory itself will only be freed on the next collection of that generation after the finalizer runs). If memory pressure isn't high enough, the GC won't reclaim the memory and won't run the finalizer.

Finalizers in .NET languages do not work in the same way as C++ destructors. If you need to dispose of resources as soon as the object goes out of scope, implement IDisposable and use a using block (in C#) or call Dispose directly.

Stability. What an interesting concept. -- Chris Maunder
GeneralDataSet object : not disposed Pin
The Bug2-Mar-04 3:36
The Bug2-Mar-04 3:36 
Generalthose xmlbuilder generated objects.. Pin
Anonymous1-Mar-04 23:32
Anonymous1-Mar-04 23:32 
GeneralRe: those xmlbuilder generated objects.. Pin
Mike Dimmick3-Mar-04 2:17
Mike Dimmick3-Mar-04 2:17 
Generaluse modem dialup to retrieve data from SQL 2000 Server... Pin
DengJW1-Mar-04 17:23
DengJW1-Mar-04 17:23 
QuestionProblem while accessing SQL server 2k remotely? Pin
DengJW1-Mar-04 15:49
DengJW1-Mar-04 15:49 
AnswerRe: Problem while accessing SQL server 2k remotely? Pin
Mike Dimmick3-Mar-04 2:31
Mike Dimmick3-Mar-04 2:31 
QuestionHow to read encrypted data from SQL Server... Pin
OHSAH1-Mar-04 10:12
OHSAH1-Mar-04 10:12 
GeneralDynamic names in SQL Server Pin
theJazzyBrain1-Mar-04 6:20
theJazzyBrain1-Mar-04 6:20 
GeneralRe: Dynamic names in SQL Server Pin
ian mariano1-Mar-04 11:57
ian mariano1-Mar-04 11:57 
GeneralRe: Dynamic names in SQL Server Pin
theJazzyBrain1-Mar-04 21:11
theJazzyBrain1-Mar-04 21:11 
QuestionCan I keep a connection open while the session exists? Pin
iluha29-Feb-04 3:42
iluha29-Feb-04 3:42 
AnswerRe: Can I keep a connection open while the session exists? Pin
Spanky329-Feb-04 7:27
Spanky329-Feb-04 7:27 
AnswerRe: Can I keep a connection open while the session exists? Pin
ian mariano29-Feb-04 21:36
ian mariano29-Feb-04 21:36 
GeneralRe: Can I keep a connection open while the session exists? Pin
gpa20001-Mar-04 19:57
gpa20001-Mar-04 19:57 
Questionselect top, limit 2, 3? Pin
Anonymous28-Feb-04 20:13
Anonymous28-Feb-04 20:13 
AnswerRe: select top, limit 2, 3? Pin
Colin Angus Mackay29-Feb-04 1:57
Colin Angus Mackay29-Feb-04 1:57 
GeneralUpdate Customise Object to Database Pin
Member 435691127-Feb-04 10:26
Member 435691127-Feb-04 10:26 

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.