Hannes de Jager
Hannes de Jager

Reputation: 2923

Can I access an ESE database that is already in use?

The windows ESE engine API call JetAttachDatabase have a readonly option. Can I use this to mount a database that is already mounted by another process?

Upvotes: 1

Views: 294

Answers (1)

Laurion Burchall
Laurion Burchall

Reputation: 2853

The answer is almost certainly "no". ESENT databases are single-process only, unless all processes are using the database read-only. The other process has probably attached the database read-write so you won't be able to.

Upvotes: 1

Related Questions