Click here to Skip to main content
15,914,016 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionNewbie question:how to copy a file to a newly createed file? Pin
Wil17-Jul-02 19:32
Wil17-Jul-02 19:32 
AnswerRe: Newbie question:how to copy a file to a newly createed file? Pin
Christian Graus17-Jul-02 19:41
protectorChristian Graus17-Jul-02 19:41 
GeneralRe: Newbie question:how to copy a file to a newly createed file? Pin
Wil17-Jul-02 22:16
Wil17-Jul-02 22:16 
GeneralRe: Newbie question:how to copy a file to a newly createed file? Pin
Christian Graus17-Jul-02 22:26
protectorChristian Graus17-Jul-02 22:26 
GeneralRe: Newbie question:how to copy a file to a newly createed file? Pin
Wil18-Jul-02 3:27
Wil18-Jul-02 3:27 
GeneralRe: Newbie question:how to copy a file to a newly createed file? Pin
Christian Graus18-Jul-02 17:17
protectorChristian Graus18-Jul-02 17:17 
GeneralBoost and VC++6sp5 Pin
Dan Watt17-Jul-02 18:41
Dan Watt17-Jul-02 18:41 
GeneralEnumProcesss Pin
gekoscan17-Jul-02 17:38
gekoscan17-Jul-02 17:38 
GeneralRe: EnumProcesss Pin
Scot Brennecke17-Jul-02 18:55
professionalScot Brennecke17-Jul-02 18:55 
GeneralStrange problem Pin
Anonymous17-Jul-02 17:31
Anonymous17-Jul-02 17:31 
GeneralRe: Strange problem Pin
Christian Graus17-Jul-02 18:11
protectorChristian Graus17-Jul-02 18:11 
Generalwinsock or CSocket Pin
zecodela17-Jul-02 17:22
zecodela17-Jul-02 17:22 
GeneralRe: winsock or CSocket Pin
Greven17-Jul-02 17:57
Greven17-Jul-02 17:57 
GeneralRe: winsock or CSocket Pin
Masaaki Onishi18-Jul-02 6:14
Masaaki Onishi18-Jul-02 6:14 
GeneralRe: winsock or CSocket Pin
zecodela20-Jul-02 2:55
zecodela20-Jul-02 2:55 
GeneralNull'ing structures Pin
Marc Richarme17-Jul-02 17:18
Marc Richarme17-Jul-02 17:18 
GeneralRe: Null'ing structures Pin
gekoscan17-Jul-02 17:43
gekoscan17-Jul-02 17:43 
GeneralRe: Null'ing structures Pin
Scot Brennecke17-Jul-02 19:04
professionalScot Brennecke17-Jul-02 19:04 
GeneralRe: Null'ing structures Pin
Marc Richarme17-Jul-02 20:12
Marc Richarme17-Jul-02 20:12 
GeneralRe: Null'ing structures Pin
Scot Brennecke17-Jul-02 20:34
professionalScot Brennecke17-Jul-02 20:34 
GeneralRe: Null'ing structures Pin
Marc Richarme20-Jul-02 6:17
Marc Richarme20-Jul-02 6:17 
QuestionWhy does windows database programming have to be so hard? Pin
Anonymous17-Jul-02 13:14
Anonymous17-Jul-02 13:14 
MySQL Has the following core functions:
connect(), query(), store_result(), fetch_[row, feild]() num_rows(), num fields(),
escape_string(), and close()
There are others, but those are the most used.

Data returned is all characters, and and you get to the data by:
row=fetch_row(query_result);
and row[N] = field N, it's that simple!

Is there anything that simple for ADO or ODBC? I'm trying to port a MySQL app to SQL Server, and having a hard time finding anything that simple. My real concern is handling user-defined queries. In MySQL it was as easy as:

con=connect();
select_database(con, "my database");
query(con, user_sql);
result=store_restult(con);
fields=num_fields(result);
while (row=fetch_row(result)){
for (f=0; f< fields; f++){
printf("%s", row[f]);
}
}

adding field names to the output is just as easy too! (a for loopw/fetch_feild() )
I have yet to see anything that easy for Windows/SQL server. My MFC book says it's too hard to do queries like that, so it doesn't cover it.

Anyone have any suggestions on wrappers?

AnswerRe: Why does windows database programming have to be so hard? Pin
Matt Gullett17-Jul-02 13:53
Matt Gullett17-Jul-02 13:53 
GeneralWinsock Pin
Ken Mazaika17-Jul-02 13:08
Ken Mazaika17-Jul-02 13:08 
GeneralRe: Winsock Pin
Nish Nishant17-Jul-02 15:24
sitebuilderNish Nishant17-Jul-02 15:24 

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.