Skip to content

jamiebalfour04/zpe.lib.accdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zpe.lib.accdb

This is the official Microsoft Access .accdb plugin for ZPE.

The plugin supports reading .accdb files directly from ZPE.

Installation

Place zpe.lib.accdb.jar in your ZPE native-plugins folder and restart ZPE.

You can also download with the ZULE Package Manager by using:

zpe --zule install zpe.lib.accdb.jar

Documentation

Full documentation, examples and API reference are available here:

View the complete documentation

Example

import "zpe.lib.accdb"

db = open_access_file("database.accdb")

tables = db->get_tables()
print(tables)

users = db->get_table("Users")
rows = users->get_rows()

for (r in rows)
    print(r->get_column("Name"))
end for

Notes

  • Supports .accdb files.
  • Read-only access.
  • Uses Jackcess internally.

About

The official ZPE plugin for working with Microsoft Access files.

Topics

Resources

License

Stars

Watchers

Forks

Contributors

Languages