io.github.sinri.keel.mysql.statement.AbstractModifyStatement 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.statement;
import io.github.sinri.keel.mysql.NamedMySQLConnection;
import io.vertx.core.Future;
import io.vertx.sqlclient.SqlConnection;
import javax.annotation.Nonnull;
/**
* @since 1.10
*/
public abstract class AbstractModifyStatement extends AbstractStatement {
/**
* @param sqlConnection get from pool
* @return future with affected rows; failed future when failed
* @since 1.7
* @since 1.10 removed recover
*/
public Future executeForAffectedRows(@Nonnull SqlConnection sqlConnection) {
return execute(sqlConnection)
.compose(resultMatrix -> {
var afx = resultMatrix.getTotalAffectedRows();
return Future.succeededFuture(afx);
});
}
/**
* @since 3.0.11
* @since 3.0.18 Finished Technical Preview.
*/
public Future executeForAffectedRows(@Nonnull NamedMySQLConnection namedMySQLConnection) {
return executeForAffectedRows(namedMySQLConnection.getSqlConnection());
}
/**
* @since 3.0.0
*/
public static AbstractModifyStatement buildWithRawSQL(@Nonnull String sql) {
return new AbstractModifyStatement() {
@Override
public String toString() {
return sql;
}
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy