You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2022. It is now read-only.
I tried to use sorm with an Oracle database. I got an error like:
Exception in thread "main" scala.NotImplementedError: an implementation is missing at scala.Predef$.$qmark$qmark$qmark(Predef.scala:230) at sorm.core.DbType$.driverClass(DbType.scala:42)
When I took a closer look, the Oracle driver is not implemented.
In your method 'byUrl' in the 'DbType' object the oracle case exists:
case u if u.startsWith("jdbc:oracle:") => Oracle
But in the 'driverClass' method, there is not Oracle driver case... Is it possible to add the oracle case? The driver is:
case DbType.Oracle => "oracle.jdbc.driver.OracleDriver"