On Tue, 2004-05-25 at 11:10, Jeff Mathis wrote:
my first question would be do you know if your mysql server even
supports InnoDB tables? The install probably does, but data and log
files need to be created for InnoDB tables, which are separate from
MyISAM files. Do you have permission to do this on your install?
Yes. InnoDB tables can indeed be created on my MySQL server. They work
correctly when I add "TYPE=InnoDB" to my CREATE TABLE statements. I'm
not having trouble setting up InnoDB.
The problem is, my EJB container writes the "CREATE TABLE ..."
statements for me, and uses the server default table type, which is
MyISAM. The EJB container does not allow me to specify table type. So, I
am looking for a way to set the default table type at the Connector/J
level. Is that possible?