newScanner returns a new scanner initialized with the option string s.
(s string)
| 240 | |
| 241 | // newScanner returns a new scanner initialized with the option string s. |
| 242 | func newScanner(s string) *scanner { |
| 243 | return &scanner{[]rune(s), 0} |
| 244 | } |
| 245 | |
| 246 | // ParseURL no longer needs to be used by clients of this library since supplying a URL as a |
| 247 | // connection string to sql.Open() is now supported: |
no outgoing calls
no test coverage detected
searching dependent graphs…