how to open ms access database in android smartpho

2020-02-06 17:15发布

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?

标签: android
2条回答
够拽才男人
2楼-- · 2020-02-06 17:37

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:

  1. Download the free SQLlite for your computer AND as an app for your Android device.
  2. Then you must export your database tables into popular data flatfile formats (csv, txt, xml).
  3. Next, you need to import such data into SQLlite either with some type of management console (Firefox browser has a great plugin Add-on) or with code (Python maintains a built-in SQLlite module) and import/append data from aforementioned data types. In fact with code you can directly connect to Jet/ACE engine via ODBC to extract database content and then migrate it to SQLlite without need of csv, txt, xml import/export route.
  4. Connect your mobile device to your computer.
  5. Transfer the sqllite file by simply moving files over between folders.

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.

查看更多
小情绪 Triste *
3楼-- · 2020-02-06 17:38

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

查看更多
登录 后发表回答