File tree 2 files changed +27
-3
lines changed
2 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -311,6 +311,22 @@ Release notes - NHibernate - Version 5.4.0
311
311
* #2242 Test case for NH-3972 - SQL error when selecting a column of a subclass when sibling classes have a column of the same name
312
312
313
313
314
+ Build 5.3.20
315
+ =============================
316
+
317
+ Release notes - NHibernate - Version 5.3.20
318
+
319
+ 2 issues were resolved in this release.
320
+
321
+ ** Bug
322
+
323
+ * #3438 DB2/400: ArgumentException Column 'SQL_TYPE_NAME' does not belong to table DataTypes
324
+
325
+ ** Task
326
+
327
+ * #3454 Release 5.3.20
328
+
329
+
314
330
Build 5.3.19
315
331
=============================
316
332
Original file line number Diff line number Diff line change 1
- using NHibernate . Cfg ;
1
+ using System ;
2
+ using System . Data . Common ;
3
+ using NHibernate . Dialect . Schema ;
2
4
using NHibernate . SqlCommand ;
3
5
4
6
namespace NHibernate . Dialect
@@ -23,7 +25,13 @@ public class DB2400Dialect : DB2Dialect
23
25
{
24
26
public DB2400Dialect ( )
25
27
{
26
- DefaultProperties [ Environment . ConnectionDriver ] = "NHibernate.Driver.DB2400Driver" ;
28
+ DefaultProperties [ Cfg . Environment . ConnectionDriver ] = "NHibernate.Driver.DB2400Driver" ;
29
+ }
30
+
31
+ public override IDataBaseSchema GetDataBaseSchema ( DbConnection connection )
32
+ {
33
+ // The DB2 implementation is not valid for DB2400.
34
+ throw new NotSupportedException ( ) ;
27
35
}
28
36
29
37
public override bool SupportsSequences
@@ -61,4 +69,4 @@ public override bool SupportsVariableLimit
61
69
get { return false ; }
62
70
}
63
71
}
64
- }
72
+ }
You can’t perform that action at this time.
0 commit comments