-->
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: NHibernate, Oracle, Guid und String
PostPosted: Mon Jul 10, 2006 5:20 am 
Newbie

Joined: Thu Jul 06, 2006 9:35 am
Posts: 1
Oracle 8.1.7.
Hallo,

ich habe/hatte das Problem, dass ich Guids als PrimaryKey für meine Objekte benutze, in der DB allerdings auf etwas anderes ausweichen musste, da Oracle mit Guids nicht allzuviel anzufangen weiß.

Um der ganzen Sache Herr zu werden, habe ich die Methode <<GenerateParameter>> in der Klasse <<OracleDataClientDriver>> um folgenden Eintrag erweitert:

Code:
// Oracle unterstützt nicht den Typ <<Guid>> nicht!
// Als Work-Around wird der Typ auf <<String>> gewechselt.
if (parameter.SqlType.DbType == DbType.Guid) {
  parameter = new Parameter(parameter.Name, NHibernateUtil.String.SqlType);
}


Hatte schon mal jemand das gleiche Problem resp. wie wurde es ohne Kunstgriff gelöst. Persönlich gefällt mir die Lösung nicht so recht.


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.