Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BDB vs INNODB

Status
Not open for further replies.

stasJohn

Programmer
May 6, 2004
155
US
Are there any big differences between using BDB and INNODB table types? I know they both support transactions and BDB is generally slower than INNODB. I'm talking more about the implementation rather than performance.

For instance, I developed this application which at the time I was writing it was for INNODB tables. Should the same app work fine using the BDB table type.

thanks!
 
Should the same app work fine using the BDB table type.
It should be.

The difference is Innodb supports foreign keys and referential integrity concepts.
I doubt BDB supports that.



--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
 
Hmm, then my app won't work then. I make extensive use of foreign keys and integrity rules.

Thanks for the info!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top