-->
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.  [ 4 posts ] 
Author Message
 Post subject: Problem Varchar als Primary Key
PostPosted: Thu Dec 01, 2005 1:38 pm 
Newbie

Joined: Thu Dec 01, 2005 1:26 pm
Posts: 2
Hallo

ich habe ein Problem wenn ich eine Tabelle mappe, die als primarykey den Typ varchar hat.
Ich benutze DB2.
Das mapping ist von der Form:
<class name="de.PseudoRnbVarChar" table="PSEUDO_RNB">
<id name="id" column="NUMBER" type="string">
<generator class="assigned"/>
</id>
<property name="porting_ID" column="PORTING_ID" insert="false" update="false" type="string"/>
</class>

Hibernate erzeugt ein SQL Statement, was sich auf der Konsole problemlos ausführen läßt,
nur Hibernate selber hat ein Problem damit.
Es erscheint die Fehlermeldung:
DB2 Fehlermeldung: com.ibm.db2.jcc.b.SqlException: DB2 SQL error: SQLCODE: -302, SQLSTATE: 22001, SQLERRMC: null

Geht man gegen eine Tabelle, welche als primary key ein Bigint hat, also
<id name="id" column="NUMBER" type="long">, so kommt es nicht zu diesem Problem.

Hat Hibernate ein Problem mit varchar als primary key.

besten Dank und Gruss[/code][/b]


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 01, 2005 5:57 pm 
Newbie

Joined: Thu Dec 01, 2005 5:38 pm
Posts: 6
Hi!

Gib mal bei Generator-Class "native" und nicht "assigend" an!

Ich hatte mal so ein ähnliches Problem


Top
 Profile  
 
 Post subject:
PostPosted: Fri Dec 02, 2005 11:28 am 
Newbie

Joined: Thu Dec 01, 2005 1:26 pm
Posts: 2
sourcekot wrote:
Hi!

Gib mal bei Generator-Class "native" und nicht "assigend" an!

Ich hatte mal so ein ähnliches Problem



Habe native eingegeben, leider ohne Erfolg.

Grundsätzlich sollte Hibernate mit dem Mapping einer Tabelle mit Type varchar für den
primary key keine Probleme haben.

Komme da leider nicht weiter


Top
 Profile  
 
 Post subject:
PostPosted: Wed Dec 07, 2005 8:29 am 
Newbie

Joined: Wed Dec 07, 2005 8:20 am
Posts: 10
HAllo,

bin auch ein newbie, aber vielleicht kann ichhelfen...

Ich habe auch Tabelle mit Primary Key mit VARCHAR

Ich glaube bei dir das Problem ist der GENERATOR...
weil native generator soll ja numerisches generieren, aber nicht VARCHAR

bei mir, die PK muss ich selber in INSERT eingeben, und wird nicht automatisch generiert. Und es funktioniert

Hier ist meine Mapping:
<class name="Localizer" table="LOCALIZERS_T">
<id name="localizer" column="localizer_pk" type="string"/>
</class>


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