The hbmxml tag has no wiki summary.
0
votes
1answer
174 views
To map a database view with no primary key, in hibernate xml mapping
I have created a view which will be used for fetching the data only(readonly)
View : Grid_View
> My Hibernate hbm file
<hibernate-mapping>
<class name="hibernate.domain.View" ...
1
vote
2answers
43 views
Does hibernate check length of column?
I have only access to db and read-only access to hbm.xml files. It is need to increase column size. I see that in table/column definition in hbm.xml files for this table no attribute length. Should ...
1
vote
1answer
80 views
Hibernate Criteria API with access=“field” mapping
I have a problem when using Hibernate Criteria API:
var query = session.QueryOver<MyClass>().Where(param => param.Name == "myFilterName").List<MyClass>();
If a run this statement, a ...
0
votes
4answers
243 views
Making NHibernate “translate” C# POCO Guid property with value of System.Guid.Empty to be saved as NULL for the Database uniqueidentifier field?
Our office team is working and ASP.NET project that uses .NET Framework 4 and NHibernate 3.3.1
I have a POCO domain class called AllResourcesInfo ( which ultimately maps to a Resource table in the ...
0
votes
1answer
130 views
Why do I get a foreign key violation when I try to use NHibernate Session to save to a bridge table containing composite key?
Our office team is working and ASP.NET project that uses .NET Framework 4 and NHibernate 3.3.1
I have a POCO domain class called AllResourcesInfo ( which ultimately maps to a Resource table in the ...
0
votes
1answer
207 views
A way to config the Build Action for NHibernate mapping .hbm.xml file?
Is there a way to configure the Build Action for an NHibernate mapping .hbm.xml file from within the NHibernate mapping .hbm.xml file itself or at the very least another configuration xml file?
As ...
0
votes
1answer
85 views
SaveOrUpdate skipping table
Hibernate V.4.1.8 Final
Spring: 3.1.3 Release
Scenario: During customer registration process, user will fill complete from. He is allowed to save form multiple times before finalizing form and ...
0
votes
1answer
214 views
Hibernate Query with entity-name
I am using a POJO to define two tables (Main and backup). Both XML Classes are refering to same Java Class.
Reference : Mapping same POJO to more than one table in Hibernate XML mapping files
...
0
votes
0answers
101 views
Is there a corespondent for @MappedSuperClass in hbm.xml files?
I'm using Hibernate 3.6 and I'm doing the mapping using hibernate hbm.xml files.
The problem that I have is that hibernate doesn't recognize properties from super class when I do named queries. I ...
2
votes
2answers
455 views
Hibernate 4: One class mapping Two tables - How to persist one object on both tables?
I have this class Person mapping two tables: Persons and PersonsAUD (audit):
<class catalog="test" name="test.Person" table="Persons" entity-name="Person">
<id name="id" type="int">
...
0
votes
1answer
52 views
Hibernate Map with unknown element type
I'm wondering if it's possible to define a map with unknown (Object) element type.
I have an object with the following map defined:
Map<String, Object> attributes = new HashMap<String, ...
1
vote
1answer
524 views
How to add extra columns in many to many join table in hbm.xml : hibernate? [duplicate]
Possible Duplicate:
Can add extra field(s) to @ManyToMany Hibernate extra table?
Here is my problem,is there any way to add extra columns in many to many join table using hbm.xml files in ...
0
votes
1answer
222 views
Netbeans generate hbm.xml files from multiple shcemas of database
i am using netbeans, I am generating POJO and hbm.xml files from a database, but i am able to generate only from one schema only. But I need to create from two different schemas and its tables have ...
0
votes
1answer
81 views
If name attribute (class element) is optional, how does Hibernate know to which class to map the table?
As per documentation (search 'name (optional): the fully' string to locate the sentence), name attribute of class element is optional in mapping (hbm.xml) file. If so, how does Hibernate know to which ...
3
votes
2answers
1k 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 ...
0
votes
3answers
221 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
7
votes
1answer
23k 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 ...
6
votes
1answer
963 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 : ...
2
votes
2answers
4k 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" ?>
...
1
vote
4answers
866 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 ...