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

com.github.javaclub.cdl.client.parameter.SetRowIdHandler Maven / Gradle / Ivy

There is a newer version: 2.3.9
Show newest version
package com.github.javaclub.cdl.client.parameter;

import java.sql.PreparedStatement;
import java.sql.RowId;
import java.sql.SQLException;

public class SetRowIdHandler implements ParameterHandler  {

	@Override
	public void setParameter(PreparedStatement stmt, Object[] args) throws SQLException {
		stmt.setRowId((Integer) args[0], (RowId) args[1]);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy