com.github.chengyuxing.sql.support.IOutParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbit-sql Show documentation
Show all versions of rabbit-sql Show documentation
Light wrapper of JDBC, support ddl, dml, query, plsql/procedure/function, transaction and manage sql
file.
package com.github.chengyuxing.sql.support;
/**
* Store procedure/function OUT parameter type interface.
*/
@FunctionalInterface
public interface IOutParam {
/**
* OUT parameter type number.
*
* @return OUT parameter type number
* @see java.sql.Types
*/
int typeNumber();
}