We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6dfc4f commit 5cdb916Copy full SHA for 5cdb916
src/NHibernate/Dialect/Oracle9iDialect.cs
@@ -7,10 +7,8 @@ namespace NHibernate.Dialect
7
{
8
public class Oracle9iDialect : Oracle8iDialect
9
10
- public override string CurrentTimestampSelectString
11
- {
12
- get { return "select systimestamp from dual"; }
13
- }
+ public override string CurrentTimestampSelectString =>
+ $"select {CurrentTimestampSQLFunctionName} from dual";
14
15
public override string CurrentTimestampSQLFunctionName
16
0 commit comments