DB is sql implementation of DB
| 57 | |
| 58 | //DB is sql implementation of DB |
| 59 | type DB struct { |
| 60 | sqlType, connectionString string |
| 61 | handlers map[string]propertyHandler |
| 62 | DB *sqlx.DB |
| 63 | |
| 64 | // options |
| 65 | options options.Options |
| 66 | } |
| 67 | |
| 68 | //Transaction is sql implementation of Transaction |
| 69 | type Transaction struct { |
nothing calls this directly
no outgoing calls
no test coverage detected