I downloaded a fresh Hibernate and unzipped it.
In hibernate-3.1/etc/hibernate.properties, we have:
Code:
## MySQL
#hibernate.dialect org.hibernate.dialect.MySQLDialect
#hibernate.dialect org.hibernate.dialect.MySQLInnoDBDialect
#hibernate.dialect org.hibernate.dialect.MySQLMyISAMDialect
#hibernate.connection.driver_class com.mysql.jdbc.Driver
#hibernate.connection.url jdbc:mysql:///test
#hibernate.connection.username gavin
#hibernate.connection.password
It looks like I have to choose between InnoDB and MyISAM. What if some of my tables are InnoDB and some MyISAM?
Thanks.