Tagged Questions
5
votes
2answers
887 views
Mapping Java byte[] to MySQL binary(64) in Hibernate
I'm having some trouble mapping a byte array to a MySQL database in Hibernate and was wondering if I'm missing something obvious. My class looks roughly like this:
public class Foo {
private ...
2
votes
1answer
420 views
Can I create both MyISAM and InnoDB tables in the same database using Hibenrate hbm2ddl
I need both MyISAM tables and InnoDB tables in my database, I am using hbm2ddl to create them. Can I create both MyISAM and InnoDB tables in the same database using Hibenrate hbm2ddl?
It seems that ...
2
votes
1answer
731 views
Hibernate, MySQL Views and hibernate.hbm2ddl.auto = validate
I can use MySQL views in Hibernate by treating them like tables - ie. the entity is no different than one created for a table. However my application won't deploy when Hibernate is set to validate the ...
2
votes
0answers
1k views
How to find a JNDI resource inside the hibernatetool Ant task
I want to generate my database schema with Ant. I am using hbm2ddl task.
I am using Hibernate with JNDI. My hibernate.cfg.xml looks like:
<!DOCTYPE hibernate-configuration PUBLIC
...
1
vote
1answer
69 views
How can I instruct hbm2ddl to generate sql for MyISAM engine
When I use hbm2ddl commands to auto generate SQL from JPA2 based annotations it automatically creates the table for ENGINE=InnoDB
e.g.
create table foo (id integer not null, bar integer) ...
1
vote
1answer
180 views
Problems with Hibernates hbm2ddl.auto=validate and MySQL text types
I've tried to enable hbm2ddl.auto=validate on a project I've inherited. I now get a lot of wrong column type exceptions for String properties which are mapped either with text or mediumtext (MySQL ...
1
vote
1answer
118 views
Is it possible to generate a default value for a certain database column using hbm2ddl
Env: JPA 1, Hibernate 3.3.x, MySQL 5.x
We auto generate database schema using hbm2ddl export operation. Would it be possible to generate a default value for a certain @Entity member during SQL ...
0
votes
1answer
173 views
Tell Hibernate's hbm2ddl to add MySQL enum columns for @Enumerated annotated fields
I'm creating a DB table using hbm2ddl with Java code similar to the following:
@Entity
public class Filter {
public enum Type {
TypeA, TypeB;
}
@Enumerated(EnumType.STRING)
...