-->
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: Bigint = String?
PostPosted: Tue Mar 20, 2007 3:03 am 
Newbie

Joined: Mon Mar 19, 2007 7:34 am
Posts: 3
Guten Morgen miteinander,

wegen meinem Projekt für die Abschlussprüfung muss ich mich nun in Hibernate einarbeiten. Nun hab ich bereits ein paar Tabellen angelegt, nur musste ich feststellen, dass wenn ich wie folgt eine Tabelle anlege, ich niemals den Typ varchar, oder char bekomme, sondern lauter Bigint...

Code:
   <class name="User" table="cf_user">
      <id name="u_Nr" type="long">   </id>
      <property name="u_Vorname" type="java.lang.String">
         <column name="U_VORNAME" sql-type="varchar(25)" not-null="false" />
      </property>
      <property name="u_Nachname" type="java.lang.String">
         <column name="U_NACHNAME" sql-type="varchar(25)" not-null="false" />
      </property>      
      <property name="u_Kurzz" type="java.lang.String">
         <column name="U_KURZZ" sql-type="varchar(6)" not-null="false" />
      </property>      
      <property name="u_Tele" type="java.lang.String">
         <column name="U_TELE" sql-type="varchar(20)" not-null="false" />
      </property>            
      <property name="u_KOST" type="integer" />
      <property name="u_Email" type="java.lang.String">
         <column name="U_Email" sql-type="varchar(50)" not-null="false" />
      </property>      
   </class>


Eiegntlich würde mich das nicht stören, schließlich kann ich ganz normal Datensätze in die Tablle einfügen. Nur wenn ich einen Datensatz über Eclipse ändern will kommt ständig die Fehlermeldung

Code:
update "DB"."USER" set "U_VORNAME"='Laverna' where "U_NR"=CAST(29609 AS BIGINT)

java.sql.SQLException: ORA-00902: Ungültiger Datentyp


Error saving data


Könnt ihr mir sagen woran das liegt?

mfg
Christina


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.