Hello,

i’m writing since i encountered an error with the current nhibernate
jetdriver
(svn checkout)

I searched the web and according to this:
http://nhjira.koah.net/browse/NHCD-26 the problem should be fixed
already.

However in my case it still generates the following ddl code:

    create table NotificationItem (
        Id  COUNTER,
       RecipientId INT null,
       CreationTimeStamp DATETIME null,
       NotificationTitle TEXT($1) null,
       NotificationMessage TEXT($1) null,
       ShowBalloonTip BIT null,
       primary key (Id)
    )

Which gives a ‘syntax error in field definition’ due to the ‘($1)’
strings
I checked the jetdriver code and it has all the modifications that
were mentioned in the post above.

Do you know how this could be fixed or could you point me to the right
direction?

regards
nico



This is the relevant mapping part:
<?xml version="1.0" encoding="utf-8"?>
<!--Generated from NHibernate.Mapping.Attributes on 2009-07-27
15:29:23Z.-->
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
  <class name="Jam.DataModel.Management.NotificationItem, WatchKernel"
polymorphism="implicit">
    <id name="Id" column="Id" type="Int64" length="10" unsaved-
value="-1">
      <generator class="native" />
    </id>
    <property name="RecipientId" type="Int64" length="10" />
    <property name="Timestamp" column="CreationTimeStamp" />
    <property name="NotificationTitle" length="255" />
    <property name="NotificationMessage" length="255" />
    <property name="ShowBalloonTip" />
  </class>
[..]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"NHibernate Contrib - Development Group" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com.ar/group/nhcdevs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to