Click here to Skip to main content
15,892,517 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Hotkey for menu Item [modified] Pin
DoomedOne19-Dec-07 4:40
DoomedOne19-Dec-07 4:40 
GeneralRegarding Memory leak Pin
adiveppanavar19-Dec-07 0:55
adiveppanavar19-Dec-07 0:55 
QuestionRe: Regarding Memory leak Pin
CPallini19-Dec-07 1:01
mveCPallini19-Dec-07 1:01 
GeneralRe: Regarding Memory leak Pin
Hamid_RT19-Dec-07 1:25
Hamid_RT19-Dec-07 1:25 
GeneralRe: Regarding Memory leak Pin
Don Box19-Dec-07 1:44
Don Box19-Dec-07 1:44 
QuestionRe: Regarding Memory leak Pin
David Crow19-Dec-07 2:35
David Crow19-Dec-07 2:35 
GeneralConnect to MySQL from MFC Dlg Pin
QuickDeveloper18-Dec-07 23:58
QuickDeveloper18-Dec-07 23:58 
GeneralRe: Connect to MySQL from MFC Dlg Pin
Kiran Pinjala19-Dec-07 0:27
Kiran Pinjala19-Dec-07 0:27 
MySql installation will provide you with soem documentation for api's to be used for all operations with MySql Database.
Some of them are

void *mydata;
//initialize and connect to mysql database
mysql_init((MYSQL*) 0);
mysql_real_connect((MYSQL*) myData,dbHost,dbUID,dbPWD, NULL, MYSQL_PORT, NULL,0);
//select the database to futher operations
mysql_select_db( (MYSQL*)myData,"MYSQL");
// run aquery
mysql_query((MYSQL*)myData, "select * from mysql.host");

Saadhinchaali

GeneralRe: Connect to MySQL from MFC Dlg Pin
Kiran Pinjala19-Dec-07 0:43
Kiran Pinjala19-Dec-07 0:43 
GeneralRe: Connect to MySQL from MFC Dlg Pin
Hamid_RT19-Dec-07 1:21
Hamid_RT19-Dec-07 1:21 
QuestionRe: Connect to MySQL from MFC Dlg Pin
David Crow19-Dec-07 2:39
David Crow19-Dec-07 2:39 
GeneralRe: Connect to MySQL from MFC Dlg Pin
QuickDeveloper19-Dec-07 19:07
QuickDeveloper19-Dec-07 19:07 
GeneralRe: Connect to MySQL from MFC Dlg Pin
David Crow20-Dec-07 2:23
David Crow20-Dec-07 2:23 
Generalread/write functions with dots as the last parameter Pin
Anthony Appleyard18-Dec-07 23:49
Anthony Appleyard18-Dec-07 23:49 
GeneralRe: read/write functions with dots as the last parameter Pin
CPallini19-Dec-07 0:09
mveCPallini19-Dec-07 0:09 
QuestionRe: read/write functions with dots as the last parameter Pin
David Crow19-Dec-07 2:43
David Crow19-Dec-07 2:43 
QuestionHow to get the choosed menu's caputer? Pin
vernchen18-Dec-07 23:09
vernchen18-Dec-07 23:09 
GeneralRe: How to get the choosed menu's caputer? Pin
David Crow19-Dec-07 2:53
David Crow19-Dec-07 2:53 
GeneralReturn more than one parameter from a single function Pin
CodingLover18-Dec-07 22:48
CodingLover18-Dec-07 22:48 
GeneralRe: Return more than one parameter from a single function Pin
jhwurmbach18-Dec-07 23:18
jhwurmbach18-Dec-07 23:18 
QuestionRe: Return more than one parameter from a single function Pin
CodingLover18-Dec-07 23:26
CodingLover18-Dec-07 23:26 
GeneralRe: Return more than one parameter from a single function Pin
jhwurmbach18-Dec-07 23:30
jhwurmbach18-Dec-07 23:30 
GeneralRe: Return more than one parameter from a single function Pin
Nelek18-Dec-07 23:31
protectorNelek18-Dec-07 23:31 
GeneralRe: Return more than one parameter from a single function Pin
CPallini18-Dec-07 23:56
mveCPallini18-Dec-07 23:56 
GeneralRe: Return more than one parameter from a single function Pin
CodingLover19-Dec-07 0:16
CodingLover19-Dec-07 0:16 

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.