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

com.sap.cds.jdbc.hana.HanaSessionVariableSetter 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.hana;

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

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

public class HanaSessionVariableSetter implements SessionVariableSetter {

	@Override
	public void set(Connection conn, String key, String value) throws SQLException {
		conn.setClientInfo(key, value);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy