Documentation ¶
Overview ¶
Package azuremysql provides connections to Azure Database for MySQL. See https://docs.microsoft.com/en-us/azure/mysql.
URLs ¶
For mysql.Open, azuremysql registers for the scheme "azuremysql". To customize the URL opener, or for more details on the URL format, see URLOpener.
See https://gocloud.dev/concepts/urls/ for background information.
Index ¶
Examples ¶
Constants ¶
const Scheme = "azuremysql"
Scheme is the URL scheme azuremysql registers its URLOpener under on mysql.DefaultMux.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CertFetcher ¶
type CertFetcher = azuredb.CertFetcher
CertFetcher is a default CertPoolProvider that can fetch CA certificates from any publicly accessible URI or File.
type CertPoolProvider ¶
type CertPoolProvider = azuredb.CertPoolProvider
A CertPoolProvider obtains a certificate pool that contains the Azure CA certificate.
type URLOpener ¶
type URLOpener struct { // CertSource specifies how the opener will obtain the Azure Certificate // Authority. If nil, it will use the default *azuredb.CertFetcher. CertSource azuredb.CertPoolProvider // TraceOpts contains options for OpenCensus. TraceOpts []ocsql.TraceOption }
URLOpener opens Azure MySQL URLs like "azuremysql://user:password@myinstance.mysql.database.azure.com/mydb".