type SQL struct {
Host string Port string User string Password string Database string Schema string SSL *SSL MaxOpenConns uint32 MaxConnLifetime Duration MaxConnIdleTime Duration//Additional options to be appended as options=<Options>//The value will be taken as is. So be sure to separate multiple options by a space
Options string
}
type SQLBase struct {
Host string Port string Database string Schema string SSL SSLBase//Additional options to be appended as options=<Options>//The value will be taken as is. So be sure to separate multiple options by a space
Options string
}