File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
+ using NHibernate . Engine ;
2
3
3
4
namespace NHibernate . Driver
4
5
{
@@ -40,5 +41,26 @@ public override bool SupportsMultipleOpenReaders
40
41
{
41
42
get { return false ; }
42
43
}
44
+
45
+ /// <summary>
46
+ /// Gets a value indicating whether the driver [supports multiple queries].
47
+ /// </summary>
48
+ /// <value>
49
+ /// <c>true</c> if [supports multiple queries]; otherwise, <c>false</c>.
50
+ /// </value>
51
+ public override bool SupportsMultipleQueries
52
+ {
53
+ get { return true ; }
54
+ }
55
+
56
+ /// <summary>
57
+ /// Gets the result sets command.
58
+ /// </summary>
59
+ /// <param name="session">The implementor of the session.</param>
60
+ /// <returns></returns>
61
+ public override IResultSetsCommand GetResultSetsCommand ( ISessionImplementor session )
62
+ {
63
+ return new BasicResultSetsCommand ( session ) ;
64
+ }
43
65
}
44
- }
66
+ }
You can’t perform that action at this time.
0 commit comments