com.sap.cloud.mt.subscription.SqlOperationsSqLite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multi-tenant-subscription Show documentation
Show all versions of multi-tenant-subscription Show documentation
Spring Boot Enablement Parent
/*******************************************************************************
* © 2019-2024 SAP SE or an SAP affiliate company. All rights reserved.
******************************************************************************/
package com.sap.cloud.mt.subscription;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Collections;
import java.util.List;
public class SqlOperationsSqLite extends SqlOperations {
@Override
public void createSchema(String tenantId, Connection connection) throws SQLException {
throw new SQLException("SQLite does not support schemas");
}
@Override
public void deleteSchema(String tenantId, Connection connection) throws SQLException {
throw new SQLException("SQLite does not support schemas");
}
@Override
public List getAllSchemas(Connection connection) {
return Collections.emptyList();
}
}