Way of Connecting to MYSQL database

I could connect to db2 type database successfully using below command and executed successfully. now i want to know how we can connect to mysql db on prem databases by following same method?
liquibase --url=“jdbc:$(db_type)://$(db_server_name)” --searchPath="$(Build.SourcesDirectory)\$(changeset_master_file_path)"
–changeLogFile=“changeset_master.xml” --username="$(account-id)"
–password=

what are the changes need to be done to above command ?

Please share exact commands. and respective document. Thank you

Hi @Kumar,

Are you getting any error? I guess you tried using the above command by updating the URL to your MySQL one:

liquibase update --url=“jdbc:mysql://$(db_server_name)” --searchPath="$(Build.SourcesDirectory)\$(changeset_master_file_path)"`
–changeLogFile=“changeset_master.xml” `  --username="$(account-id)"` –password=

Can you please tell me the problem (if you are having some) to connect to a MySQL DB by using the above comand, then we can see how we can help you, and if there is a document we have available to share with you.

Thanks,
Daniel.