有人可以帮助我 - 在运行DML命令时遇到以下错误。
引起:org.h2.jdbc.JdbcSQLException:找不到函数“TO_TIMESTAMP”; SQL语句:
答案 0 :(得分:1)
最后我得到了这个答案,我们在项目中使用了旧版本的 h2 数据库依赖项。 对于快速修复,取出最新的依赖项并添加到您的pom.xml文件中。
Exit Sub
RenameError:
If Err.Number = 53 Then
details = " when renaming from " & oldFileName & " to " & newFileName
Else
details = ""
EndIf
answer = MsgBox("Error " & Err.Number & ": " & Err.Description & details, vbRetryCancel Or vbCritical)
If answer = vbRetry Then
Resume ' retry problematic line again
Else
End ' terminate the program
End If