Android Database access from .NET application
Hi we have an Android app that currently stores its data in xml files and are looking to move it to SQL Lite based dat开发者_如何学运维abase.
The app is a consumer of data and data is added through a windows application after the phone is connected to the PC (Currently both are done through xml files on the SD card)
If the data is stored on a SQLite database, is it possible to locate and connect to the database from a .NET application which can both enter and delete records from it.
Please advise. Thanks,
Yes. You will be able to connect and then manipulate a SQLite database from a .NET application. Use a data provider like System.Data.SQLite. The downloads are here.
精彩评论