GetParam gets the value.
(key string)
| 91 | |
| 92 | // GetParam gets the value. |
| 93 | func (dsn *DSN) GetParam(key string) (value string, ok bool) { |
| 94 | value, ok = dsn.params[key] |
| 95 | return |
| 96 | } |
| 97 | |
| 98 | // Clone returns a copy of current dsn. |
| 99 | func (dsn *DSN) Clone() (copy *DSN) { |