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

com.sap.cds.jdbc.generic.GenericSessionVariableSetter Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/*******************************************************************
 * © 2022 SAP SE or an SAP affiliate company. All rights reserved. *
 ******************************************************************/
package com.sap.cds.jdbc.generic;

import java.sql.Connection;
import java.sql.SQLException;

import com.sap.cds.jdbc.spi.SessionVariableSetter;

public class GenericSessionVariableSetter implements SessionVariableSetter {

	@Override
	public void set(Connection conn, String key, String value) throws SQLException {
		// do nothing
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy