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

service.database.request.DeleteRow Maven / Gradle / Ivy

Go to download

This is a library providing an API for accessing databases via socket connections

There is a newer version: 4.0.5
Show newest version
package service.database.request;

import java.util.Map;

public class DeleteRow {
    private String table;
    private Map values;

    public String getTable() {
        return table;
    }

    public void setTable(String table) {
        this.table = table;
    }

    public Map getValues() {
        return values;
    }

    public void setValues(Map values) {
        this.values = values;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy