The hbmxml tag has no wiki summary.
5
votes
1answer
6k views
How can I map “insert='false' update='false'” on a composite-id key-property which is also used in a one-to-many FK?
I am working on a legacy code base with an existing DB schema. The existing code uses SQL and PL/SQL to execute queries on the DB. We have been tasked with making a small part of the project ...
4
votes
1answer
429 views
How to generate hbm.xml file from FluentNHibernate
I'm trying to follow this tutorial but instead of generating the expected hbm.xml files with my mappings in it generates simple .cs class for my entities like for example:
public class ProductMap : ...
3
votes
2answers
202 views
Hibernate Mapping same Column twice
How can fix this thing
Repeated column in mapping for entity: com.abc.domain.PersonConnect
column: PERSON_ID (should be mapped with insert="false"
update="false")
this is snippet from my hbm ...
1
vote
2answers
2k views
Using a named query in a hbm with import class
In my MSSQL server I have a SQL view called AllFavourite. In order to load the data into my DTO class I have the following in my hbm.xml file...
<?xml version="1.0" encoding="utf-8" ?>
...
0
votes
0answers
37 views
hibernate hbm2hbmxml schema and catalog
How do I configure hibernate tools to not emit the optional "catalog" and "schema" attributes on a table in the generated hbm.xml files?
0
votes
0answers
102 views
CompositeId issue while converting Hibernate (hbm) XML files to Annotations
I'm taking over an existing Java EE project which uses Hibernate session factory with .hbm.xml files. I want to convert this project so as to use annotations and replace xml files and ultimately use ...
0
votes
3answers
91 views
nhibernate, stored procs
Can we call a STOREDPROC which inserts data into db wich has no return value from NHIBERNATE? if so can any one please help me out with a small sample.(hbm
0
votes
4answers
548 views
How to map this link table in cf-orm?
A 1---* A_B *---1 B
Table A has aID (PK), Table B has bID (PK),
table A_B has:
aID (PK, FK),
bID (PK, FK),
num
I tried
property name="A" fieldtype="many-to-one" cfc="A" fkcolumn="aID";
property ...