while run this command: liquibase --classpath=“C:\Users\MKoppak1\workspaces\liquibase-4.29.1\lib\DynamoDBLocal.jar;C:\Users\MKoppak1\workspaces\liquibase-4.29.1\lib\liquibase-commercial-dynamodb-1.1.0.jar” --changelog-file=“C:\Users\MKoppak1\workspaces\DDL_file\data.xml” --url=jdbc:dynamodb://localhost:8000 --log-level=debug update
I am facing the below exception:
Caused by: liquibase.exception.DatabaseException: java.lang.RuntimeException: Driver class was not specified and could not be determined from the url (jdbc:dynamodb://localhost:8000)
at liquibase.database.DatabaseFactory.openConnection(DatabaseFactory.java:241)
at liquibase.database.DatabaseFactory.openConnection(DatabaseFactory.java:188)
at liquibase.database.DatabaseFactory.openDatabase(DatabaseFactory.java:153)
at liquibase.command.core.helpers.AbstractDatabaseConnectionCommandStep.createDatabaseObject(AbstractDatabaseConnectionCommandStep.java:74)
… 26 more
Caused by: java.lang.RuntimeException: Driver class was not specified and could not be determined from the url (jdbc:dynamodb://localhost:8000)
at liquibase.database.DatabaseFactory.findDriverClass(DatabaseFactory.java:291)
at liquibase.database.DatabaseFactory.openConnection(DatabaseFactory.java:224)