8

I am aware of the possibility to create my own trigger(ed) solution, but I didn't want to reinvent the wheel :-)

ralf.w.
  • 183
  • 1
  • 6

2 Answers2

6

Berkeley DB's SQL API is completely SQLite compatible and offers HA/replication for high availability. The combination of SQLite's easy-of-use and Berkeley DB's scalability and reliability are a great combination.

Disclaimer: I'm the Product Manager for Berkeley DB, so I'm a little biased. However, one of the main benefits of adding the SQLite API to Berkeley DB is that SQLite applications can now have HA/replication for mission-critical, highly available applications.

Gaius
  • 11,200
  • 3
  • 31
  • 64
dsegleau
  • 176
  • 2
  • 1
    I read from the docs: Only the master node can modify the database. So this is not for me :-( – ralf.w. Mar 09 '11 at 08:10
2

Yes, there are some:

They are additions to the SQLite3 code. The interface is unchanged so we don't need to change the application code.

Disclosure: I am the creator