func New(dsn string) (m.Driver, error) {
    db, err := sql.Open("avatica", dsn)
    if err != nil {
        return nil, err
    }