/* * Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.android; import org.h2.command.Prepared; /** * This class represents a prepared statement that returns a result set. */ public class H2Query extends H2Program { H2Query(Prepared prepared) { super(prepared); } /** * Set the specified parameter value. * * @param index the parameter index (0, 1,...) * @param value the new value */ @Override public void bindDouble(int index, double value) { // TODO } /** * Set the specified parameter value. * * @param index the parameter index (0, 1,...) * @param value the new value */ @Override public void bindLong(int index, long value) { // TODO } /** * Set the specified parameter to NULL. * * @param index the parameter index (0, 1,...) */ @Override public void bindNull(int index) { // TODO } /** * Set the specified parameter value. * * @param index the parameter index (0, 1,...) * @param value the new value */ @Override public void bindString(int index, String value) { // TODO } /** * Close the statement. */ @Override public void close() { // TODO } }