sharing database in mobile phone with pc
-
i have to develop a window mobile application but due to limitation of mobile application i have to share my database in mobile application to pc for further process.anyone got idea about this?
make your mobile app save the location of the database file in the windows mobile registry. on your desktop app use rapi.dll to read the registry value on the mobile, and fetch the file using rapi.dll If the desktop application is writen in a .Net language you need to p/invoke the methods you need in rapi.dll. Hope it helps.
-
i have to develop a window mobile application but due to limitation of mobile application i have to share my database in mobile application to pc for further process.anyone got idea about this?
Just an idea, but I thought SQL Server Compact Edition (SQL CE) created binaries compatible across all platforms using SQL CE.
-
i have to develop a window mobile application but due to limitation of mobile application i have to share my database in mobile application to pc for further process.anyone got idea about this?
I had a situation where I had to save data of Mobile App in Mobile & at the end of the day, data was transferred to PC. Simply store the data in CSV, txt or such light weight format. While transferring to PC, parse the data accordingly. PC App & mobile App both will be knowing where the data is being stored, co no need to store path seperately anywhere. Yet you may confirm the path and/or ask for a new path from PC parser app of file stored in mobile.
Thanks & Regards, Note: Always vote according to your satisfaction of the answer, afterall somebody is giving time to help you.