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

Database

 
AnswerRe: use a string by reference? Pin
BlackDice16-Dec-05 5:15
BlackDice16-Dec-05 5:15 
AnswerRe: use a string by reference? Pin
Shawn_H7-Feb-06 20:40
Shawn_H7-Feb-06 20:40 
QuestionData access through a windows service Pin
User 231751415-Dec-05 21:32
User 231751415-Dec-05 21:32 
AnswerRe: Data access through a windows service Pin
abhinish17-Dec-05 0:37
abhinish17-Dec-05 0:37 
QuestionError with Jet 4.0 Pin
vilmer15-Dec-05 5:36
vilmer15-Dec-05 5:36 
AnswerRe: Error with Jet 4.0 Pin
albCode15-Dec-05 5:45
albCode15-Dec-05 5:45 
GeneralRe: Error with Jet 4.0 Pin
vilmer15-Dec-05 22:05
vilmer15-Dec-05 22:05 
GeneralRe: Error with Jet 4.0 Pin
Rob Graham16-Dec-05 13:26
Rob Graham16-Dec-05 13:26 
Why are you using the old (COM) ADO classes inside of .Net code?
Souldn't you be using System.Data.Oledb classes instead?
First, neither Connection nor RS are garbage collected objects, so I presume you are using some kind of wrapper around the MSADO dll. Calling GC.collect (always a bad idea unless you are absolutely certain you must) probably creates the leak, since it is likely that the wrapped com objects don't get released at the right time... (you close the RS object, but don't dispose...and since it is nulled, GC likely collects it...

Mixing COM and .Net is not a good thing, and in this case you really don't need to, since .Net classes with even better functionallity exist.

Absolute faith corrupts as absolutely as absolute power
Eric Hoffer

All that is necessary for the triumph of evil is that good men do nothing.
Edmund Burke

GeneralRe: Error with Jet 4.0 Pin
vilmer17-Dec-05 1:19
vilmer17-Dec-05 1:19 
QuestionDatabase migration tool Pin
AnonymousTwo15-Dec-05 4:40
AnonymousTwo15-Dec-05 4:40 
AnswerRe: Database migration tool Pin
-Dr_X-19-Dec-05 11:58
-Dr_X-19-Dec-05 11:58 
QuestionColumnOrder Pin
silverear15-Dec-05 2:36
silverear15-Dec-05 2:36 
AnswerRe: ColumnOrder Pin
toxcct15-Dec-05 3:07
toxcct15-Dec-05 3:07 
QuestionJOIN two objects from different sources Pin
serious-sam14-Dec-05 12:48
serious-sam14-Dec-05 12:48 
AnswerRe: JOIN two objects from different sources Pin
-Dr_X-19-Dec-05 12:00
-Dr_X-19-Dec-05 12:00 
QuestionMigrating from SQL Server 2000 to 2005 Pin
PrashantJ14-Dec-05 10:15
PrashantJ14-Dec-05 10:15 
AnswerRe: Migrating from SQL Server 2000 to 2005 Pin
albCode14-Dec-05 21:18
albCode14-Dec-05 21:18 
GeneralRe: Migrating from SQL Server 2000 to 2005 Pin
PrashantJ15-Dec-05 6:31
PrashantJ15-Dec-05 6:31 
QuestionDelete duplicate records Pin
munklefish14-Dec-05 6:34
munklefish14-Dec-05 6:34 
AnswerRe: Delete duplicate records Pin
enjoycrack14-Dec-05 7:13
enjoycrack14-Dec-05 7:13 
GeneralRe: Delete duplicate records Pin
munklefish14-Dec-05 11:46
munklefish14-Dec-05 11:46 
GeneralRe: Delete duplicate records Pin
enjoycrack14-Dec-05 11:49
enjoycrack14-Dec-05 11:49 
GeneralRe: Delete duplicate records Pin
munklefish14-Dec-05 11:54
munklefish14-Dec-05 11:54 
GeneralRe: Delete duplicate records Pin
enjoycrack14-Dec-05 14:53
enjoycrack14-Dec-05 14:53 
AnswerRe: Delete duplicate records Pin
albCode15-Dec-05 6:00
albCode15-Dec-05 6:00 

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.