hibernated icon indicating copy to clipboard operation
hibernated copied to clipboard

HibernateD is ORM for D language (similar to Hibernate)

Results 17 hibernated issues
Sort by recently updated
recently updated
newest added

The ODBC config in [ddbc](https://github.com/buggins/ddbc/) is getting reasonable and tested during CI build. It's about time to make required ODBC within Hibernated

enhancement

Currently trying to populate a sqlite database, I just read a very large file line by line, create one object from each line then sess.save(myObject) It then eats up all...

enhancement
question

Hi i just want to know the HIBERNATE version that hibernated implements. I need to read the docs. Thanks.

Is it currently possible to have a multi-column primary key? For example, imagine a table of passports, and each person can actually get several passports over the course of their...

enhancement

It would be nice if `updateDBSchema` also added/removed table columns when fields are added and removed from the respective class. I suspect this is one of those features that sounds...

See https://github.com/buggins/ddbc/issues/122 As GDC cannot import `etc.c.sqlite3`, ddbc cannot do CI with gdc.

GDC specific

Thanks for maintaining this. It's the best orm we got in D.

I can map an enum from a number but what about mapping an enum from a string? It would be nice to be able to do: ``` @Enumerated(EnumType.ORDINAL) ``` or...

enhancement

Hi! First of all, thank you for this gem of D code! It has saved me a lot of work already! To display database content on multiple pages, I need...

enhancement

My sample code below creates an object and saves it correctly to the database, but then fails to load the same object from the database and gives an SQL syntax...

bug