The short answer... Yes. Envers should be as database vendor independed as NH Core is.
Longer answer... The test written for Envers was originally only tested against SQL Server. The last week I've made the test also run against postgresql and mysql (and done fixes to go all green). Your specific problem with "DateTime" should probably have been fixed in revision https://bitbucket.org/RogerKratz/nhibernate.envers/changeset/a8fe65e872f8. Trunk should be fine for you I guess. The problem with making sure tests against Oracle works, is simply that I have no license for it. Can you please run all envers tests against an Oracle db and come back with the result? /Roger From: [email protected] [mailto:[email protected]] On Behalf Of Örjan Fjällborg Sent: den 31 maj 2012 13:45 To: [email protected] Subject: [nhusers] Envers and Oracle Hi everyone! I just joined this group in hope that my problems with Envers can be fixed. First of all I wonder if Oracle 10g is supported? Secondly if it is supported, then I wonder why I got the following DDL script output from SchemaExport: create table REVINFO ( REV NUMBER(10,0) not null, REVTSTMP DateTime, primary key (REV) ) Oracle does not like the data type DateTime at all. I tried to change REVTSTMP manually to TIMESTAMP(4) and skip the schema generation, but then I got a different exception when running unit tests. Best regards: Örjan Fjällborg -- You received this message because you are subscribed to the Google Groups "nhusers" group. To view this discussion on the web visit https://groups.google.com/d/msg/nhusers/-/fs3ZSb6hJsAJ. To post to this group, send email to [email protected]<mailto:[email protected]>. To unsubscribe from this group, send email to [email protected]<mailto:[email protected]>. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en. -- You received this message because you are subscribed to the Google Groups "nhusers" 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/group/nhusers?hl=en.
