Driver is an implementation of riverdriver.Driver for database/sql.
| 60 | |
| 61 | // Driver is an implementation of riverdriver.Driver for database/sql. |
| 62 | type Driver struct { |
| 63 | dbPool *sql.DB |
| 64 | replacer sqlctemplate.Replacer |
| 65 | } |
| 66 | |
| 67 | // New returns a new SQLite driver for use with River. It also works with libSQL |
| 68 | // (a SQLite fork). |
nothing calls this directly
no outgoing calls
no test coverage detected