-->
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.  [ 6 posts ] 
Author Message
 Post subject: Problem mit 2 Aggregationsfunktionen
PostPosted: Sat Sep 03, 2005 1:49 pm 
Newbie

Joined: Sat Sep 03, 2005 12:00 pm
Posts: 4
Ich habe das Problem, dass bei Verwendung von zwei Aggregationsfunktionen (sum) in einem SQL-Statement ein für mich nicht handhabbares Ergebnis zu Tage tritt.
Bei der Verwendung von nur einem sum() Aufruf funktioniert das Mapping ohne Probleme.


Hibernate version: 3.05

Mapping documents:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping>
<class name="qos.common.Flow" table="flows">
<id name="fid" column="fid" type="java.lang.Integer">
<generator class="identity"/>
</id>
<property name="bytes" column="bytes" type="java.lang.Long" />
<property name="packets" column="packets" type="java.lang.Long" />
<property name="tos" column="src_tos" type="java.lang.Integer" />
<property name="first_switched" column="first_switched" type="java.lang.Long" />
<property name="last_switched" column="last_switched" type="java.lang.Long" />
<property name="ipv4_dst_addr" column="ipv4_dst_addr" type="java.lang.Integer" />
<property name="ipv6_dst_addr" column="ipv6_dst_addr" type="java.lang.String" />
<property name="prot" column="prot" type="java.lang.Integer" />
</class>
</hibernate-mapping>

Code between sessionFactory.openSession() and session.close():
List l = session.createQuery("select sum(fl.bytes), sum(fl.packets) as packets from Flow fl").list();
System.out.println((Flow)ll.get(0));

Name and version of the database you are using: MySQL 4.1.12

The generated SQL (show_sql=true):
select sum(flow0_.bytes) as col_0_0_, sum(flow0_.packets) as col_1_0_ from flows flow0_

Full stack trace of any exception that occurs:
Exception in thread "main" java.lang.ClassCastException: [Ljava.lang.Object;
at qos.aggregator.QoSAggregator.aggregateDay(QoSAggregator.java:63)
at qos.aggregator.QoSAggregator.run(QoSAggregator.java:27)
at qos.aggregator.QoSAggregatorRun.main(QoSAggregator.java:93)


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 03, 2005 3:16 pm 
Pro
Pro

Joined: Fri Sep 02, 2005 4:21 am
Posts: 206
Location: Vienna
Hallo,

Du bekommst keine Liste zurück sondern ein Object[] (was der trace die mit
[Ljava.lang.Object "flüstert").

Siehe Beschreibung von Query list():
Quote:
Return the query results as a List. If the query contains multiple results pre row, the results are returned in an instance of Object[].


Bitte frage mich nicht, warum es so implementiert ist - ich stelle es nur fest.

Erik


Top
 Profile  
 
 Post subject:
PostPosted: Sun Sep 04, 2005 3:44 am 
Newbie

Joined: Sat Sep 03, 2005 12:00 pm
Posts: 4
Die Interpretation des Stacktraces ist mir auch schon gelungen, jedoch habe ich keinerlei Ahnung wie ich auf dieses Object[] casten und zugreifen soll.

Hast Du eine Lösung? Ich habe schon viele Varianten probiert.


Im Handbuch steht aber auch:
----------------------------------------------------------------------------------------
HQL queries may even return the results of aggregate functions on properties:

select avg(cat.weight), sum(cat.weight), max(cat.weight), count(cat)
from Cat cat
----------------------------------------------------------------------------------------
das funktioniert aber nicht!


Top
 Profile  
 
 Post subject:
PostPosted: Sun Sep 04, 2005 10:03 am 
Pro
Pro

Joined: Fri Sep 02, 2005 4:21 am
Posts: 206
Location: Vienna
Hallo,

maiko wrote:
Die Interpretation des Stacktraces ist mir auch schon gelungen, jedoch habe ich keinerlei Ahnung wie ich auf dieses Object[] casten und zugreifen soll.

Hast Du eine Lösung? Ich habe schon viele Varianten probiert.


Es war mir einfach nicht klar, was du nicht durchschaut hattest.

Mein Vorschlag:
Code:
List l = session.createQuery("select sum(fl.bytes), sum(fl.packets) as packets from Flow fl").list();
Object[] sums = (Object[]) l.get(0);
Long sumBytes = (Long)sums[0];
Long sumPackets = (Long)sums[1];
System.out.println(sumBytes + ", " + sumPackets);


Nicht schön - aber es funktioniert. Man kann es natürlich etwas schöner "verpacken".

Erik


Top
 Profile  
 
 Post subject:
PostPosted: Sun Sep 04, 2005 12:27 pm 
Newbie

Joined: Sat Sep 03, 2005 12:00 pm
Posts: 4
Vielen Dank, das hat mir sehr geholfen!


Top
 Profile  
 
 Post subject:
PostPosted: Sun Sep 04, 2005 1:22 pm 
Pro
Pro

Joined: Fri Sep 02, 2005 4:21 am
Posts: 206
Location: Vienna
Hallo,

Eine kleine Ergänzung zu Thema schöneres "Verpacken" des Ganzen.

Man kann eine Hilfsklasse erstellen, die diese "Mechanik" versteckt.

Code:
package test.ek;

public class SumObject {
    private Long sumBytes;
    private Long sumPackets;

    public SumObject(Long sumBytes, Long sumPackets) {
        this.sumBytes = sumBytes;
        this.sumPackets = sumPackets;
    }

    public Long getSumBytes() {
        return sumBytes;
    }

    public Long getSumPackets() {
        return sumPackets;
    }
}


Mit dieser Klasse "bewaffnet", kann man dann schreiben:
Code:
SumObject sums = (SumObject ) session.createQuery(
    "select new " + SumObject.class.getName()
        + "(sum(fl.bytes), sum(fl.packets)) from Flow fl").uniqueResult();


Und dann kann man mit den Gettern die Summen auslesen. Finde ich sehr elegant - wenn es auch etwas mehr Schreibarbeit ist. :).

Erik


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 6 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.