Update data in CEDB using C++ and win32 APIs
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi i am using CEDB to access windows CE datas.. Now i need to update the datas in CEDB. code: oid=CeSeekDatabaseEx(globalHDB,CEDB_SEEK_BEGINNING,seekcount,NULL,NULL); I use it to seek in database for each cases i uses case 0: epropColumn[0].propid = CID_BOOKID; cepropColumn[0].val.lpwstr=szBookID; cepropColumn[0].wFlags = NULL; cepropColumn[0].wLenData = 0; to get the column values i use these cases for each column of the row. Can any one help me to change only one value in the row. for example if i hav book id,book_name,author. say bk001,C++,martin i need it to be changed as bk001,Java,martin A code snippet would be help ful. Help me to trace it out. Thanks in Advance.