Click here to Skip to main content
15,884,298 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: C++ parser Pin
CPallini26-Oct-10 5:58
mveCPallini26-Oct-10 5:58 
AnswerRe: C++ parser [modified] Pin
Rick York26-Oct-10 8:14
mveRick York26-Oct-10 8:14 
JokeRe: C++ parser Pin
Alain Rist26-Oct-10 10:48
Alain Rist26-Oct-10 10:48 
GeneralRe: C++ parser Pin
Rick York27-Oct-10 10:37
mveRick York27-Oct-10 10:37 
GeneralRe: C++ parser Pin
Alain Rist27-Oct-10 10:59
Alain Rist27-Oct-10 10:59 
GeneralRe: C++ parser Pin
Andrea Di Domenico2-Nov-10 3:47
Andrea Di Domenico2-Nov-10 3:47 
AnswerRe: C++ parser Pin
Alain Rist26-Oct-10 10:44
Alain Rist26-Oct-10 10:44 
QuestionHow to update records on live(remote) database from local machine ... Pin
shiv@nand25-Oct-10 23:58
shiv@nand25-Oct-10 23:58 
Hi all i am using mysql remote database i am able to connect and retrieve the records from the remote database. But i am unable to update the records.
Please healp.


see my code;
CRecordset cRecord(&db);
CString csQuery;
csQuery.Format(L"select * from %s where product_name = %s", m_TableName,m_ProductName);


cRecord.Open(CRecordset::snapshot, csQuery, CRecordset::none);

if(cRecord.IsOpen())
{
while(!cRecord.IsEOF())
{
cRecord.Edit(); ;
//here i have to update the price column please help me
cRecord.Update();
cRecord.MoveNext();
}//while(!cRecord.IsEOF())
cRecord.Close();
db.Close();


Thanks in advance
QuestionRe: How to update records on live(remote) database from local machine ... Pin
David Crow26-Oct-10 3:42
David Crow26-Oct-10 3:42 
QuestionAbout dialog bar that supports a drop-down for extra controls in it Pin
Nishad S25-Oct-10 19:46
Nishad S25-Oct-10 19:46 
AnswerRe: About dialog bar that supports a drop-down for extra controls in it Pin
Niklas L25-Oct-10 21:45
Niklas L25-Oct-10 21:45 
GeneralRe: About dialog bar that supports a drop-down for extra controls in it Pin
Nishad S25-Oct-10 22:06
Nishad S25-Oct-10 22:06 
QuestionCrash Pin
T.RATHA KRISHNAN25-Oct-10 19:08
T.RATHA KRISHNAN25-Oct-10 19:08 
AnswerRe: Crash Pin
Cedric Moonen25-Oct-10 20:22
Cedric Moonen25-Oct-10 20:22 
AnswerRe: Crash Pin
Niklas L25-Oct-10 21:11
Niklas L25-Oct-10 21:11 
AnswerRe: Crash Pin
Stephen Hewitt25-Oct-10 21:11
Stephen Hewitt25-Oct-10 21:11 
AnswerRe: Crash Pin
Sivaraman Dhamodharan25-Oct-10 22:43
Sivaraman Dhamodharan25-Oct-10 22:43 
Questionhello how to make a injector that reinjects everytime the dll if specified process reloads and changes hes pid Pin
nah133725-Oct-10 7:57
nah133725-Oct-10 7:57 
AnswerRe: hello how to make a injector that reinjects everytime the dll if specified process reloads and changes hes pid Pin
«_Superman_»25-Oct-10 8:10
professional«_Superman_»25-Oct-10 8:10 
GeneralRe: hello how to make a injector that reinjects everytime the dll if specified process reloads and changes hes pid Pin
nah133725-Oct-10 8:19
nah133725-Oct-10 8:19 
QuestionMessage Removed Pin
25-Oct-10 6:39
nethravathikg25-Oct-10 6:39 
AnswerRe: ptz controller Pin
Sauro Viti25-Oct-10 7:09
professionalSauro Viti25-Oct-10 7:09 
QuestionHow can prevent to show one property page? Pin
Le@rner25-Oct-10 2:50
Le@rner25-Oct-10 2:50 
AnswerRe: How can prevent to show one property page? Pin
David Crow25-Oct-10 3:06
David Crow25-Oct-10 3:06 
GeneralRe: How can prevent to show one property page? Pin
Le@rner25-Oct-10 18:41
Le@rner25-Oct-10 18:41 

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.