-->
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.  [ 1 post ] 
Author Message
 Post subject: Welcher Java Datentyp passt zum ORACLE Datentyp CHAR??
PostPosted: Wed Feb 04, 2009 10:54 am 
Newbie

Joined: Wed Feb 04, 2009 10:42 am
Posts: 1
Ich habe ein vorgegebenes Schema mit Tabellen. Einige Datenbanktypen sind CHAR(x) Entities.
Zuerst habe ich String verwendet wie folgt verwendet:

Code:
@Column(name="AC_OWNER", length=9)
   private String acOwner;


und bekomme folgende Fehlermeldung:
org.hibernate.HibernateException: Wrong column type in FCIS.LEG for column AC_OWNER. Found: char, expected: varchar2(9 char)

Ok dachte ich mir und probierte char[] ging aber nicht. Dann habe ich mir mit dem Reverse Engineering Tool die Domainobjekte generieren lassen und bekomme:

Code:
@Column(name = "AC_OWNER", length = 9)
   public String getAcOwner() {
      return this.acOwner;
   }

Das ist doch das selbe, außer das es beim getter steht.

Welchen Javadatentyp muss ich verwenden, dass diese Meldung verschwindet.

Vielen dank für Eure Hilfe im Voraus!


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

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.