I am unable to figure out what is the best way to achieve a scenario like this:
Working on a project that would have android application as client.
- User will take their device with the android application installed to field/visit and capture/punch/key data through out the day. This data would be stored locally on the device in SQLite database.
- The data captured in SQLite needs to be exported out and imported into the desktop app (it could be java or .net based) for further processing.
Other points: A. User could connect the phone via usb to desktop. B. data flow would always be in one direction (i.e. Phone to Desktop). C. No internet connection on the phone
My dilemma is how to access the sqllite database programmatically in desktop application? Are there any JDBC drivers that could read data from the sqlite database from a device connected via USB to the computer?