1
vote
2answers
13 views
Hibernate Cross Reference many-to-many Parent/Child Mapping Of Same Class
I'm having a major problem getting a parent/child relationship working for a hierarchy of a single class. Basically I have to represent a server tree like thus:
Server A
Serve …
1
vote
2answers
21 views
How to store word compositions in a relational database in a normalized way?
I'm trying to find a nice way to store word compositions of the following form:
exhaustcleaningsystem
exhaust cleaning system
exhaustcleaning system
exhaust cleaningsystem
The …
0
votes
1answer
90 views
Nhibernate - Mapping List doesn’t update List indexes
Hi,
I'm having one self-referencing class. A child has a reference to its parent and a parent has a list of children. Since the list of children is ordered, I'm trying to map the …
1
vote
5answers
51 views
Is there a way to define reusable properties to n-hibernate mappings?
I have a scenario that i want to add some standard properties to my entities. Meaning that i will have e.g. 1 int and 2 string properties applied to all relevant entities. I have o …
1
vote
2answers
83 views
Groovy on Grails: Abstract Classes in GORM Relationships
Grails GORM does not persist abstract domain classes to the database, causing a break in polymorphic relationships. For example:
abstract class User {
String email
String password …
0
votes
3answers
39 views
java beans: difference between persistent field and persistent property?
I got the impression that if we use persistent fields, there is no need for getter methods since the entity manager references the instance variables directly. However, when I remo …
1
vote
2answers
54 views
Easiest way of getting third party database information into java objects
I am making some small "business intelligence" applications/tools that need to talk to other systems. Primarily accounting systems that believe that databases are an integration l …
1
vote
2answers
58 views
What does Hibernate map a boolean datatype to when using an Oracle database by default?
By default if I create a field in an entity like:
@NotNull
boolean myBoolean;
And I let Hibernate auto-create my tables. What Oracle data type will this map to?
2
votes
4answers
64 views
Open Source Equivalents to Erwin
I am aware of CA/Erwin community edition but it is constrained to 25 objects. I have also tried modeling in Visio which was painful. Curious to learn of any open source equivalents …
0
votes
8answers
115 views
Is there a better, more “Standard” way to perform SQL queries in PHP without using a framework?
For the longest time, I've been using the following basic formatting for SQL queries within my PHP:
$sql = "SELECT * FROM `user-data` WHERE `id` = '".$id."' LIMIT 1;";
$fn = mysql …
0
votes
2answers
46 views
How to Properly Enforce Correct Usage of a Class Method?
Our current ORM solution uses Data Mappers to represent tables / views in the database which then return a Collection object that can be used to iterate through the retrieved recor …
1
vote
2answers
84 views
how to do order-by in hibernate mapping
suppose Object A has a list of Object B, and Object B must have a object C, B can be order base on C.level .
In A.hbm.xml
<bag name="listB"
table="T_B"
…
0
votes
2answers
31 views
Intercepting property setting in Fluent NHibernate
I'm new to Fluent NHibernate, and have what I think should be a simple question. The problem is that I can't seem to find a simple answer anywhere.
I have a database column that …
0
votes
1answer
21 views
Problem with mapping tag in hibernate configuration file
I am using hibernate annotations and when I do following everything works fine
sessionFactory = new AnnotationConfiguration()
.addPackage("istreamc …
1
vote
1answer
39 views
2 JPA entities on the same table.
Let's say I've a table with 200 columns and most of them are never used.
I map SmallEntity to the 10 columns that are used often. I use it in the associations with other entities. …
