if your's application is MFC based application, CDatabase class is there for manipulate database. If you wanna manipulate your database, you should make following steps.. 1. Build ODBC connection string for SQL server for this refer to connectionstring.com 2. Create object for CDatabase 3. Using CDatabase::Open() function get connection to your database 4. Using CDatabase::ExecteSQL() run your insert query.. 5. Finally close the connection CDatabase::Close().. -suzuu
suzuuu
Posts
-
Data Source connection -
Find file is copying? [modified]:laugh: meaooo...
-
Find file is copying? [modified]just i want to monitor particular file in windows...
-
Find file is copying? [modified]Hi, I have to find the status for a particular file which is currently copying some where or not? If anybody know any DOS commands or have any idea regarding this, please let me know. Thanks in advance Suzu
modified on Thursday, July 8, 2010 3:03 AM
-
File monitoryeah... but i need pure win32 API or any library function.
-
File monitorJust i want to get current status of the file. ie. 1) It is opend 2) It is Closed 3) It is modified Thanx
-
File monitorHi, How can i get file status(ie. open, close, edit) using C or C++. Is there any API in windows. Thanks in advance Suzu
-
Error stop Http Listeneryou should put break for while loop...
while (true)
{
try
{
result = _Server.BeginGetContext(new AsyncCallback(this.HttpCallback), _Server);
result.AsyncWaitHandle.WaitOne();
}catch (HttpListenerException) { break; }
catch (InvalidOperationException) { break; }}
-
How to receive HTTP request? [modified]thanks again B-)
-
How to receive HTTP request? [modified]Thank you very much for your reply...
-
How to receive HTTP request? [modified]TQ manish... Is there any specific socket for HTTP in windows? OR is there are any specific format to play with HTTP request through socket?
-
How to receive HTTP request? [modified]I have no idea about server! But, my need is just receive HTTP request and parse xml then store it into local file. That's all
-
How to receive HTTP request? [modified]Okay... should i use socket to receive http request?
-
How to receive HTTP request? [modified]Hi Folk, I wanna create an application which should be run as a windows service. Application should receive HTTP request from the third party application. HTTP request hold xml data, i wanna parsing that and store it into local file. For above the constrains what type of application should i create using win32 or mfc?. Plz.. get me out from this confession... thanks in advance suzuuu
modified on Thursday, April 22, 2010 1:32 AM