SQL is the sql storage driver implementation.
| 87 | |
| 88 | // SQL is the sql storage driver implementation. |
| 89 | type SQL struct { |
| 90 | db *sqlx.DB |
| 91 | namespace string |
| 92 | statementBuilder sq.StatementBuilderType |
| 93 | // Embed a LogHolder to provide logger functionality |
| 94 | logging.LogHolder |
| 95 | } |
| 96 | |
| 97 | // Name returns the name of the driver. |
| 98 | func (s *SQL) Name() string { |
nothing calls this directly
no outgoing calls
no test coverage detected