(ConnectionURL)
| 41 | } |
| 42 | |
| 43 | func (ma *missingAdapter) Open(ConnectionURL) (Session, error) { |
| 44 | return nil, fmt.Errorf("upper: Missing adapter %q, did you forget to import it?", ma.name) |
| 45 | } |
| 46 | |
| 47 | // RegisterAdapter registers a generic database adapter. |
| 48 | func RegisterAdapter(name string, adapter Adapter) { |