-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Martin,

Martin Gainty wrote:
> Any idea on how to configure MySQL with ENGINE=INNODB would be much
> appreciated or does MySQL have to be rebuilt for that option?

Binary MySQL versions since 4.0 have InnoDB both built-in and
configured. If you want to turn it off, you need to add the
"skip-innodb" configuration directive.

You can find tons of documentation on InnoDB itself directly in the
MySQL documentation for each version of MySQL:

3.23 - 4.1: http://dev.mysql.com/doc/refman/4.1/en/innodb.html
5.0       : http://dev.mysql.com/doc/refman/5.0/en/innodb.html
5.1       : http://dev.mysql.com/doc/refman/5.1/en/innodb.html

Creating a table with the InnoDB storage engine is easy... you do it the
same way you choose any storage engine in MySQL:

CREATE TABLE foo
(
...
)
ENGINE=InnoDB
...
;

Martin, I'm not sure why you claim that MySQL has either or
documentation or that what exists is poor. In my experience it is quite
extensive and, for the most part, comprehensive.

- -chris

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGQwxf9CaO5/Lv0PARAi7zAJ4voBYWdy1qtv6vCUHu0hNLp+crZwCfcnqq
KmfeC3j3ix0odLqj+XgAAF0=
=IzOj
-----END PGP SIGNATURE-----

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to