I am trying to connect my database in Node js but I am getting this error
[NODE-LIQUIBASE] Running C:\Users\fabio\OneDrive\Ambiente de Trabalho\LiquibaseNode\node_modules\liquibase\dist\liquibase\liquibase --changeLogFile="db/changelog.xml" --url="jdbc:mysql://localhost:3306/saft-demo-dump?allowMultiQueries=TRUE" --username="root" --password="Benfica1904!" --classpath="C:\Users\fabio\OneDrive\Ambiente de Trabalho\LiquibaseNode\node_modules\liquibase\dist\drivers\postgresql-42.2.8.jar" status ...
[NODE-LIQUIBASE]
[NODE-LIQUIBASE]
'C:\Users\fabio\OneDrive\Ambiente' is not recognized as an internal or external command,
operable program or batch file.
(node:11972) UnhandledPromiseRejectionWarning: Error: Command failed: C:\Users\fabio\OneDrive\Ambiente de Trabalho\LiquibaseNode\node_modules\liquibase\dist\liquibase\liquibase --changeLogFile="db/changelog.xml" --url="jdbc:mysql://localhost:3306/saft-demo-dump?allowMultiQueries=TRUE" --username="root" --password="Benfica1904!" --classpath="C:\Users\fabio\OneDrive\Ambiente de Trabalho\LiquibaseNode\node_modules\liquibase\dist\drivers\postgresql-42.2.8.jar" status
'C:\Users\fabio\OneDrive\Ambiente' is not recognized as an internal or external command,
operable program or batch file.
at ChildProcess.exithandler (child_process.js:308:12)
at ChildProcess.emit (events.js:315:20)
at maybeClose (internal/child_process.js:1048:16)
at Socket.<anonymous> (internal/child_process.js:439:11)
at Socket.emit (events.js:315:20)
at Pipe.<anonymous> (net.js:673:12)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:11972) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:11972) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
This is how I am doing the connection
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd">
<includeAll path="/db/migrations/"/>
</databaseChangeLog>
I also don’t want the driver to Postgre but the one for MySQL