package io.vertx.ext.sql;
import io.vertx.codegen.annotations.DataObject;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.JsonObject;
Represents the result of an update/insert/delete operation on the database.
The number of rows updated is available with getUpdated
and any generated keys are available with getKeys
.
Author: Tim Fox
/**
* Represents the result of an update/insert/delete operation on the database.
* <p>
* The number of rows updated is available with {@link io.vertx.ext.sql.UpdateResult#getUpdated} and any generated
* keys are available with {@link io.vertx.ext.sql.UpdateResult#getKeys}.
*
* @author <a href="http://tfox.org">Tim Fox</a>
*/
@DataObject(generateConverter = true)
public class UpdateResult {
private int updated;
private JsonArray keys;
Default constructor
/**
* Default constructor
*/
public UpdateResult() {
}
Copy constructor
Params: - other – the result to copy
/**
* Copy constructor
*
* @param other the result to copy
*/
public UpdateResult(UpdateResult other) {
this.updated = other.updated;
this.keys = other.getKeys();
}
Constructor from JSON
Params: - json – the json
/**
* Constructor from JSON
*
* @param json the json
*/
@SuppressWarnings("unchecked")
public UpdateResult(JsonObject json) {
UpdateResultConverter.fromJson(json, this);
}
Constructor
Params: - updated – number of rows updated
- keys – any generated keys
/**
* Constructor
*
* @param updated number of rows updated
* @param keys any generated keys
*/
public UpdateResult(int updated, JsonArray keys) {
this.updated = updated;
this.keys = keys;
}
Convert to JSON
Returns: the json
/**
* Convert to JSON
*
* @return the json
*/
public JsonObject toJson() {
JsonObject obj = new JsonObject();
UpdateResultConverter.toJson(this, obj);
return obj;
}
Get the number of rows updated
Returns: number of rows updated
/**
* Get the number of rows updated
*
* @return number of rows updated
*/
public int getUpdated() {
return updated;
}
public UpdateResult setUpdated(int updated) {
this.updated = updated;
return this;
}
Get any generated keys
Returns: generated keys
/**
* Get any generated keys
*
* @return generated keys
*/
public JsonArray getKeys() {
return keys;
}
public UpdateResult setKeys(JsonArray keys) {
this.keys = keys;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
UpdateResult that = (UpdateResult) o;
if (updated != that.updated) return false;
if (keys != null ? !keys.equals(that.keys) : that.keys != null) return false;
return true;
}
@Override
public int hashCode() {
int result = updated;
result = 31 * result + (keys != null ? keys.hashCode() : 0);
return result;
}
}