How to use SQLite database from MS Access?

2019-04-25 10:59发布

I would like to use an SQLite database from Microsoft Access (access from- or transfer the contents to Microsoft Access).

  • How can this be done using VBA?

This is for a client who can not install extra software:

  • Does a library exist in VBA to use SQLite databases?

3条回答
The star\"
2楼-- · 2019-04-25 11:32

There are a number of solutions available which a simple Google search would reveal. Here is one: http://www.freevbcode.com/ShowCode.asp?ID=6893

查看更多
ゆ 、 Hurt°
3楼-- · 2019-04-25 11:34

Does a standard library exist in VBA to used sqlite database?

No. Access and VBA do not have any native capability to connect to SQLite data sources.

You would have to install additional software to allow Access to use SQLite.

查看更多
够拽才男人
4楼-- · 2019-04-25 11:35

If you can use the sqlite3.exe command line tool, then have VBA spawn that and dump the data to a csv file. Then Access can read both local data and the CSV file and copy appropriately.

查看更多
登录 后发表回答