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

io.github.rocketk.jorm.executor.ArgumentsSetter Maven / Gradle / Ivy

Go to download

JORM is a lightweight JDBC-based ORM tool. Different from Mybatis and Hibernate, JORM encourages developers to directly use SQL to operate data, JORM will handle the other boring works automatically.

There is a newer version: 1.0.5
Show newest version
package io.github.rocketk.jorm.executor;

import java.sql.PreparedStatement;

/**
 * @author pengyu
 */
@FunctionalInterface
public interface ArgumentsSetter {
    void setArguments(PreparedStatement ps, Object[] arguments);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy