Implements the Recorder interface, and stores data in a DB.
| 247 | |
| 248 | // Implements the Recorder interface, and stores data in a DB. |
| 249 | type DbRecorder struct { |
| 250 | builder *squirrel.StatementBuilderType |
| 251 | db squirrel.DBProxyBeginner |
| 252 | table string |
| 253 | fields []*field |
| 254 | key []*field |
| 255 | record Record |
| 256 | flavor string |
| 257 | } |
| 258 | |
| 259 | // New creates a new DbRecorder. |
| 260 | // |
nothing calls this directly
no outgoing calls
no test coverage detected