All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cloud.mt.subscription.SqlOperationsSqLite Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**************************************************************************
 * (C) 2019-2022 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();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy