This is the official Microsoft Access .accdb plugin for ZPE.
The plugin supports reading .accdb files directly from ZPE.
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
Full documentation, examples and API reference are available here:
View the complete documentation
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
- Supports .accdb files.
- Read-only access.
- Uses Jackcess internally.