Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: About preventing memory leaks Pin
Freak3026-Apr-13 2:09
Freak3026-Apr-13 2:09 
GeneralRe: About preventing memory leaks Pin
Marco Bertschi26-Apr-13 3:25
protectorMarco Bertschi26-Apr-13 3:25 
AnswerRe: About preventing memory leaks Pin
Newbie0026-Apr-13 7:54
Newbie0026-Apr-13 7:54 
AnswerRe: About preventing memory leaks Pin
David Crow26-Apr-13 9:00
David Crow26-Apr-13 9:00 
AnswerRe: About preventing memory leaks Pin
jschell26-Apr-13 9:33
jschell26-Apr-13 9:33 
QuestionRegarding storing structures in database Pin
Member 789460125-Apr-13 19:03
Member 789460125-Apr-13 19:03 
AnswerRe: Regarding storing structures in database Pin
Richard MacCutchan25-Apr-13 22:23
mveRichard MacCutchan25-Apr-13 22:23 
AnswerRe: Regarding storing structures in database Pin
Marco Bertschi25-Apr-13 22:36
protectorMarco Bertschi25-Apr-13 22:36 
Given that you have two structures, you need something like a foreign key to resolve them when loading them from database.

Given there is structure #1:
C++
struct numberOne{
  int childStructId,
  int someValue
};

and struct #2:
C++
struct numberTwo{
 int id,//needs to be unique
 int anotherValue
};


You need now a database which has two tables, one to store struct #1 and another one for struct #2:
The table for struct #1 has two fields, for the childStructId and onther one for someValue.
The table for struct #2 has also two fields, one for its unique Id and another one for anotherValue.

Afterwards you can load struct #1 from database, and according to the childStructId you can load struct #2 from the database.

I was just guessing what you want, please come back to me if you have further questions.

GeneralRe: Regarding storing structures in database Pin
Member 789460125-Apr-13 22:56
Member 789460125-Apr-13 22:56 
GeneralRe: Regarding storing structures in database Pin
Marco Bertschi25-Apr-13 23:16
protectorMarco Bertschi25-Apr-13 23:16 
GeneralRe: Regarding storing structures in database Pin
Jochen Arndt25-Apr-13 23:34
professionalJochen Arndt25-Apr-13 23:34 
GeneralRe: Regarding storing structures in database Pin
Member 789460125-Apr-13 23:41
Member 789460125-Apr-13 23:41 
GeneralRe: Regarding storing structures in database Pin
Jochen Arndt25-Apr-13 23:57
professionalJochen Arndt25-Apr-13 23:57 
AnswerRe: Regarding storing structures in database Pin
jschell26-Apr-13 9:36
jschell26-Apr-13 9:36 
GeneralRe: Regarding storing structures in database Pin
Member 789460129-Apr-13 1:00
Member 789460129-Apr-13 1:00 
GeneralRe: Regarding storing structures in database Pin
Member 78946011-May-13 0:09
Member 78946011-May-13 0:09 
Questionstrcat_memcpy Pin
khushboo gupta25-Apr-13 18:37
khushboo gupta25-Apr-13 18:37 
AnswerRe: strcat_memcpy Pin
pasztorpisti25-Apr-13 21:07
pasztorpisti25-Apr-13 21:07 
GeneralRe: strcat_memcpy Pin
Freak3026-Apr-13 2:15
Freak3026-Apr-13 2:15 
GeneralRe: strcat_memcpy Pin
pasztorpisti26-Apr-13 2:20
pasztorpisti26-Apr-13 2:20 
AnswerRe: strcat_memcpy Pin
Richard MacCutchan25-Apr-13 22:17
mveRichard MacCutchan25-Apr-13 22:17 
QuestionDoModal in CWnd::PreTranslateMessage( MSG *pMsg ) Pin
Newbie0025-Apr-13 10:26
Newbie0025-Apr-13 10:26 
AnswerRe: DoModal in CWnd::PreTranslateMessage( MSG *pMsg ) Pin
jeron125-Apr-13 10:48
jeron125-Apr-13 10:48 
GeneralRe: DoModal in CWnd::PreTranslateMessage( MSG *pMsg ) Pin
Newbie0025-Apr-13 18:24
Newbie0025-Apr-13 18:24 
AnswerRe: DoModal in CWnd::PreTranslateMessage( MSG *pMsg ) Pin
Richard MacCutchan25-Apr-13 22:14
mveRichard MacCutchan25-Apr-13 22:14 

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.