I have created application software in vb 6 long year back which accessing database from Ms access in my pc. Now I am looking for put that Ms access database in my android phone and view it. How to do that?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
First, there are some definitions to understand here, namely database, software, and operating system. Access is two-fold as it combines a Front-End GUI management system with a Back-End database engine, Jet/ACE.
Ms Access as the software program is strictly a Windows PC software. Jet/ACE database server is strictly a Windows PC technology. So, neither component of Access can run in any other operating system including Mac, Linux, iOS, and Android. Now with that said, there may be private developer solutions listed on Google Play or Chrome web store which are not Microsoft products.
Therefore, some type of conversion and development is warranted in order to run your Access database content on Android. One such route mentioned in the comments includes SQLlite (which is like Access as a file server database or database that exists as individual files) claimed to be the most widely deployed database.
In order to do this, you need to do the following:
Other considerations is to run your Access as a web database in Office365 and log in via your Android over the web. Alternatively, export your Access database to server level database system (SQL Server, MySQL, PostgreSQL, etc.) that runs over the web and then download the corresponding system app to view and manage content or build your own app to connect. Same above route with data file export or coding will convert between Access and any other system.
I use the HandDBase app for my Android. First you need to download their desktop software which will convert the MS Access tables you want into their own format. Then I synch the recently converted tables to the HandDBase app and I'm good to go. It is a two step process but also allows for encryption which makes me feel more comfortable as I'm not really great with SQL and am afraid my information might be vulnerable somewhere.
Link: http://www.ddhsoftware.com/handbase.html