-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Zusammengesetzte Klasse
PostPosted: Tue May 09, 2006 8:08 am 
Newbie

Joined: Mon Jan 30, 2006 7:51 am
Posts: 7
Hallo,

ich hab 3 Tabellen mit jeweils dazugehörigen Klassen:
TBLFILE_Main -> FileMain
TBLFILE_SUB -> FileSub
TBLDOKTYP -> DokTyp

TBLFILE_MAIN ist meine "Mastertabelle", sie enthält ein Feld "NUMMER" als PK.
Die TBLFILE_SUB enthält einen Foreign-Key auf dieses NUMMER-Feld, es ist also eine 1:n-Beziehung. Die TBLFILE_SUB enthält ausserdem ein integer-Feld "HAUPTDATEI" ( 0 = null = false / -1 = true ).
TBLFILE_SUB KANN einen Wert in der Spalte "DOKTYP" enthalten, as ForeingKey auf TBLDOKTYP.

Diese 3 Klassen würd ich gern auf EINE Klasse "LayoutObject" mappen, wobei die 3 Tabellen/Klassen nicht als Klassen-Member sondern deren Properties direkt gemappt werden sollen, also etwa so:
Code:
public class LayoutObject {
    protected int number;
    protected String doktyp_key;

    protected String filemain_column_1_value;
    protected String filemain_column_2_value;

    protected String filesub_column_1_value;
    protected String filesub_column_2_value;

    protected String doktyp_column_1_value;
    protected String doktyp_column_2_value;
   
    // ... Setter & Getter ... //
}


Da jedoch mehrere FileSub's für eine NUMBER existieren, soll entweder die FileSub-Zeile mit der Spalte "HAUPTDATEI" = -1 ausgewählt werden oder die Werte für FileSub leer bleiben (Outer Join), was acuh heisst dass dann die Werte für DokTyp leer bleiben müssen (Es besteht ja nur eine indirekte Beziehung TBLFILE_MAIN.number -> TBLFILE_SUB.number -> TBLDOKTYP).

Hintergrund ist dass nach ALLEN Spaltenwerten sortieren werden kann.
Wie könnte so ein Mapping aussehen (fällt mir immer etwas schwer) ?
Ich will keine SQL-Query definieren, da sonst alle "Hibernate-Features" (Restrictions, Order etc) flöten gehen...

Vielen Dank im Vorraus und ich hoffe ich hab mich nicht zu kompliziert ausgedrückt ;)


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 23, 2006 7:35 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Du könntest einen Skalar über ein Query erzeugen.
Skalar ist ein Array.
select tab1.feld1, tab2.feld1 from tab1 left join tab1.tab2s ...

Ansonsten über subselect oder join eine Query in ein Mapping einbauen.

Gruß Sebastian

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.