view src/main/java/nl/cwi/monetdb/embedded/resultset/UpdateResultSet.java @ 41:3a19ebf83af6 embedded

Arranged code in packages and starting tables integration.
author Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
date Mon, 07 Nov 2016 23:31:02 +0100 (2016-11-07)
parents src/main/java/nl/cwi/monetdb/embedded/UpdateResultSet.java@8a65996a8dc0
children dfea8468cd1a
line wrap: on
line source
/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0.  If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * Copyright 2016 MonetDB B.V.
 */

package nl.cwi.monetdb.embedded.resultset;

import nl.cwi.monetdb.embedded.env.AbstractConnectionResult;
import nl.cwi.monetdb.embedded.env.MonetDBEmbeddedConnection;

/**
 * The result set from a sendUpdate method from a connection.
 *
 * @author <a href="mailto:pedro.ferreira@monetdbsolutions.com">Pedro Ferreira</a>
 */
public class UpdateResultSet extends AbstractConnectionResult {

    protected UpdateResultSet(MonetDBEmbeddedConnection connection) {
        super(connection);
    }

    public void closeImplementation() {}
}