Geneviève Le Houx
Geneviève Le Houx

Reputation: 312

Create MS Access database from a Python app

I'm working with Python and interacting with a MS Access database via the JayDeBeApi library. Everything works well, I can create tables and all but the file *.accdb need to be created previously in the MS Access software

Is there a way to dynamically create the *.accdb file via my Python code?

Upvotes: 1

Views: 896

Answers (1)

Gord Thompson
Gord Thompson

Reputation: 123849

You can use the msaccessdb package to create the .accdb file.

(I am the maintainer of that package.)

Upvotes: 5

Related Questions