io.github.sinri.keel.mysql.condition.MySQLCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.
The newest version!
package io.github.sinri.keel.mysql.condition;
import io.github.sinri.keel.mysql.exception.KeelSQLGenerateError;
/**
* @since 2.8 became interface
*/
public interface MySQLCondition {
/**
* 生成SQL的条件表达式文本。如果出错,则抛出 KeelSQLGenerateError 异常。
*
* @return The generated SQL component as String
* @throws KeelSQLGenerateError when the sql component could not be generated correctly
*/
String toString();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy