Click here to Skip to main content
16,004,507 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DLL's, the Heap, and CDocument Pin
makom4221-Aug-02 3:16
makom4221-Aug-02 3:16 
GeneralRe: DLL's, the Heap, and CDocument Pin
Tomasz Sowinski21-Aug-02 0:45
Tomasz Sowinski21-Aug-02 0:45 
GeneralRe: DLL's, the Heap, and CDocument Pin
makom4221-Aug-02 3:21
makom4221-Aug-02 3:21 
GeneralRe: DLL's, the Heap, and CDocument Pin
Tomasz Sowinski21-Aug-02 3:25
Tomasz Sowinski21-Aug-02 3:25 
GeneralRe: DLL's, the Heap, and CDocument Pin
Roger Allen21-Aug-02 1:41
Roger Allen21-Aug-02 1:41 
GeneralRe: DLL's, the Heap, and CDocument Pin
makom4221-Aug-02 3:19
makom4221-Aug-02 3:19 
GeneralCustom databases and file storage Pin
alex.barylski20-Aug-02 21:42
alex.barylski20-Aug-02 21:42 
GeneralRe: Custom databases and file storage Pin
Tomasz Sowinski21-Aug-02 0:23
Tomasz Sowinski21-Aug-02 0:23 
Hockey wrote:
Does a database keep it's records in sequential order for random access or is it more like a linked list so not a heck of alot of possible offset calculations have to be performed...???

Database is free to keep the records in any order. It may add your records at the end of the file, it may use empty spaces from deleted records. I'm pretty sure db engines don't move records, as long as you don't defragment.

If your app requests particular order with 'ORDER BY' clause, database will use index if possible; if there's no index it'll sort records on the fly (which may take long time if there's lot of data - that's why you should use index).

Tomasz Sowinski -- http://www.shooltz.com

"Yields falsehood when preceded by its quotation" yields falsehood when preceded by its quotation.

GeneralRe: Custom databases and file storage Pin
alex.barylski21-Aug-02 1:08
alex.barylski21-Aug-02 1:08 
GeneralRe: Custom databases and file storage Pin
Tomasz Sowinski21-Aug-02 1:16
Tomasz Sowinski21-Aug-02 1:16 
GeneralRe: Custom databases and file storage Pin
Steven Gregg21-Aug-02 0:30
Steven Gregg21-Aug-02 0:30 
GeneralRe: Custom databases and file storage Pin
alex.barylski21-Aug-02 1:04
alex.barylski21-Aug-02 1:04 
GeneralRe: Custom databases and file storage Pin
Steven Gregg21-Aug-02 1:17
Steven Gregg21-Aug-02 1:17 
GeneralRe: Custom databases and file storage Pin
Tomasz Sowinski21-Aug-02 1:16
Tomasz Sowinski21-Aug-02 1:16 
GeneralRe: Custom databases and file storage Pin
Joel Lucsy21-Aug-02 12:32
Joel Lucsy21-Aug-02 12:32 
Generalimages with different height in CTreeCtrl Pin
Jaro20-Aug-02 21:31
Jaro20-Aug-02 21:31 
GeneralRe: images with different height in CTreeCtrl Pin
Tomasz Sowinski20-Aug-02 23:27
Tomasz Sowinski20-Aug-02 23:27 
QuestionIf my app use DirectShow, do my mp need DirectX for running? Pin
sonshiro20-Aug-02 19:58
sonshiro20-Aug-02 19:58 
AnswerRe: If my app use DirectShow, do my mp need DirectX for running? Pin
Stephane Rodriguez.20-Aug-02 21:30
Stephane Rodriguez.20-Aug-02 21:30 
QuestionHelp! answer to simple question: System.IO.Stream?? Pin
devvvy20-Aug-02 18:56
devvvy20-Aug-02 18:56 
GeneralWM_COMMAND custom message ID Pin
JennyP20-Aug-02 18:58
JennyP20-Aug-02 18:58 
GeneralRe: WM_COMMAND custom message ID Pin
alex.barylski20-Aug-02 19:21
alex.barylski20-Aug-02 19:21 
GeneralRe: WM_COMMAND custom message ID Pin
Tomasz Sowinski21-Aug-02 0:31
Tomasz Sowinski21-Aug-02 0:31 
GeneralText HOOK Pin
Anonymous20-Aug-02 18:24
Anonymous20-Aug-02 18:24 
GeneralRe: Text HOOK Pin
alex.barylski20-Aug-02 19:32
alex.barylski20-Aug-02 19:32 

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.