Open opens the bucket identified by the URL given. URL openers must be registered in the DefaultURLMux, which is typically done in driver packages' initialization. See the URLOpener documentation in driver subpackages for more details on supported scheme(s) and URL parameter(s).
(ctx context.Context, urlstr string)
| 122 | // See the URLOpener documentation in driver subpackages for more |
| 123 | // details on supported scheme(s) and URL parameter(s). |
| 124 | func Open(ctx context.Context, urlstr string) (*sql.DB, error) { |
| 125 | return defaultURLMux.OpenPostgres(ctx, urlstr) |
| 126 | } |