RE: newbie question regarding BDB

2001-04-04 Thread Paolo Michetti
an insert need a time x7 respect with MYISAM tables ciao - Paolo -Original Message- From: Albert L. Ting [mailto:[EMAIL PROTECTED]] Sent: mercoledi 4 aprile 2001 3.04 To: [EMAIL PROTECTED] Subject: newbie question regarding BDB How does one tell if mysql is using BDB? Do I have

newbie question regarding BDB

2001-04-03 Thread Albert L. Ting
How does one tell if mysql is using BDB? Do I have to somehow specify BDB when creating a new database? I've installed BerkeleyDB and mysql, yet it doesn't look like it's using bdb. Unable to rollback any insert's. Thanks, Albert

Re: newbie question regarding BDB

2001-04-03 Thread Jonothan Farr
How does one tell if mysql is using BDB? SHOW TABLE STATUS; Type = BerkeleyDB http://www.mysql.com/doc///S/H/SHOW_TABLE_STATUS.html Do I have to somehow specify BDB when creating a new database? CREATE TABLE [...] TYPE = BDB; http://www.mysql.com/doc///C/R/CREATE_TABLE.html I've