Driver is the Oracle driver.
| 37 | |
| 38 | // Driver is the Oracle driver. |
| 39 | type Driver struct { |
| 40 | db *sql.DB |
| 41 | databaseName string |
| 42 | serviceName string |
| 43 | connectionCtx db.ConnectionContext |
| 44 | } |
| 45 | |
| 46 | func newDriver() db.Driver { |
| 47 | return &Driver{} |
nothing calls this directly
no outgoing calls
no test coverage detected