Reputation: 365
I Have developed an application/software using MS-Access database in Visual Studio 2010. How can I convert it or make it run on Android os?
Upvotes: 0
Views: 1797
Reputation: 12375
There is no simple way to "convert it". There is no comparable functionality for Access in Android. Your closest match would be SQL-Lite.
Your best bet, if you want to use existing libraries, is to use Mono for Android.
This should allow you to use your C# code in the Android framework.
Upvotes: 1