1

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?

Hannes de Jager
  • 2,903
  • 6
  • 37
  • 57

1 Answers1

1

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.

Laurion Burchall
  • 2,843
  • 16
  • 12