|
Log in | ||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hello, With NexusDB 3.01 and Delphi 2009, I have a memoryleak when I'm doing this: Code: -------------------- procedure TForm1.Button1Click(Sender: TObject); begin nxDatabase1.GetTableNames(slTables); end; procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction); begin nxDatabase1.ActiveRuntime:= false; if Assigned(slTables) then FreeAndNil(slTables); end; procedure TForm1.FormCreate(Sender: TObject); begin slTables:= TStringList.Create; nxDatabase1.ActiveRuntime:= true; end; -------------------- ReportMemoryLeaksOnShutdown is set to true in the dpr. Let me know if I'm doing something wrong here ? Thanks JP -- jprenou |
|
#2
|
|||
|
|||
|
> Let me know if I'm doing something wrong here ?
Can you please log it in our issue tracker? If you could include the test app (source) it'd be great. -- Eivind Bakkestuen [NDD] Nexus Database Systems |
|
#3
|
|||
|
|||
|
I tracked it in the issue tracker. Thanks to look at this issue. Regards -- jprenou |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Bug Report: TADOConnection.GetTableNames | Dennis Landi | nexusdb.public.support.odbc | 1 | 28th November 2007 04:28 PM |
| GetTableNames with filemask... | Tor Tveitane | nexusdb.public.support | 1 | 15th September 2003 01:44 PM |
| TnxSession.GetTableNames | Pleun van der Lugt | nexusdb.public.discussions | 4 | 6th August 2003 03:48 AM |