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

io.vertx.reactivex.sqlclient.PreparedStatement Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.vertx.reactivex.sqlclient;

import io.vertx.reactivex.RxHelper;
import io.vertx.reactivex.ObservableHelper;
import io.vertx.reactivex.FlowableHelper;
import io.vertx.reactivex.impl.AsyncResultMaybe;
import io.vertx.reactivex.impl.AsyncResultSingle;
import io.vertx.reactivex.impl.AsyncResultCompletable;
import io.vertx.reactivex.WriteStreamObserver;
import io.vertx.reactivex.WriteStreamSubscriber;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;

/**
 * A prepared statement, the statement is pre-compiled and it's more efficient to execute the statement for multiple times.
 * In addition, this kind of statement provides protection against SQL injection attacks.
 *
 * 

From a prepared statement you can * *

    *
  • use {@link io.vertx.reactivex.sqlclient.PreparedStatement#query} to create and execute a {@link io.vertx.reactivex.sqlclient.PreparedQuery}
  • *
  • use {@link io.vertx.reactivex.sqlclient.PreparedStatement#cursor} to create a {@link io.vertx.reactivex.sqlclient.Cursor}
  • *
  • use {@link io.vertx.reactivex.sqlclient.PreparedStatement#createStream} to create a {@link io.vertx.reactivex.sqlclient.RowStream}
  • *
* *

* NOTE: This class has been automatically generated from the {@link io.vertx.sqlclient.PreparedStatement original} non RX-ified interface using Vert.x codegen. */ @RxGen(io.vertx.sqlclient.PreparedStatement.class) public class PreparedStatement { @Override public String toString() { return delegate.toString(); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; PreparedStatement that = (PreparedStatement) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new PreparedStatement((io.vertx.sqlclient.PreparedStatement) obj), PreparedStatement::getDelegate ); private final io.vertx.sqlclient.PreparedStatement delegate; public PreparedStatement(io.vertx.sqlclient.PreparedStatement delegate) { this.delegate = delegate; } public PreparedStatement(Object delegate) { this.delegate = (io.vertx.sqlclient.PreparedStatement)delegate; } public io.vertx.sqlclient.PreparedStatement getDelegate() { return delegate; } private static final TypeArg> TYPE_ARG_0 = new TypeArg>(o1 -> io.vertx.reactivex.sqlclient.RowSet.newInstance((io.vertx.sqlclient.RowSet)o1, new TypeArg(o2 -> io.vertx.reactivex.sqlclient.Row.newInstance((io.vertx.sqlclient.Row)o2), o2 -> o2.getDelegate())), o1 -> o1.getDelegate()); private static final TypeArg TYPE_ARG_1 = new TypeArg(o1 -> io.vertx.reactivex.sqlclient.Row.newInstance((io.vertx.sqlclient.Row)o1), o1 -> o1.getDelegate()); private static final TypeArg TYPE_ARG_2 = new TypeArg(o1 -> io.vertx.reactivex.sqlclient.Row.newInstance((io.vertx.sqlclient.Row)o1), o1 -> o1.getDelegate()); /** * Create a prepared query for this statement. * @return the prepared query */ public io.vertx.reactivex.sqlclient.PreparedQuery> query() { io.vertx.reactivex.sqlclient.PreparedQuery> ret = io.vertx.reactivex.sqlclient.PreparedQuery.newInstance((io.vertx.sqlclient.PreparedQuery)delegate.query(), TYPE_ARG_0); return ret; } /** * Like {@link io.vertx.reactivex.sqlclient.PreparedStatement#cursor} but with empty arguments. * @return */ public io.vertx.reactivex.sqlclient.Cursor cursor() { io.vertx.reactivex.sqlclient.Cursor ret = io.vertx.reactivex.sqlclient.Cursor.newInstance((io.vertx.sqlclient.Cursor)delegate.cursor()); return ret; } /** * Create a cursor with the provided arguments. * @param args the list of arguments * @return the query */ public io.vertx.reactivex.sqlclient.Cursor cursor(io.vertx.reactivex.sqlclient.Tuple args) { io.vertx.reactivex.sqlclient.Cursor ret = io.vertx.reactivex.sqlclient.Cursor.newInstance((io.vertx.sqlclient.Cursor)delegate.cursor(args.getDelegate())); return ret; } /** * Like {@link io.vertx.reactivex.sqlclient.PreparedStatement#createStream} but with empty arguments. * @param fetch * @return */ public io.vertx.reactivex.sqlclient.RowStream createStream(int fetch) { io.vertx.reactivex.sqlclient.RowStream ret = io.vertx.reactivex.sqlclient.RowStream.newInstance((io.vertx.sqlclient.RowStream)delegate.createStream(fetch), TYPE_ARG_1); return ret; } /** * Execute the prepared query with a cursor and createStream the result. The createStream opens a cursor * with a fetch size to fetch the results. *

* Note: this requires to be in a transaction, since cursors require it. * @param fetch the cursor fetch size * @param args the prepared query arguments * @return the createStream */ public io.vertx.reactivex.sqlclient.RowStream createStream(int fetch, io.vertx.reactivex.sqlclient.Tuple args) { io.vertx.reactivex.sqlclient.RowStream ret = io.vertx.reactivex.sqlclient.RowStream.newInstance((io.vertx.sqlclient.RowStream)delegate.createStream(fetch, args.getDelegate()), TYPE_ARG_2); return ret; } /** * Close the prepared query and release its resources. * @return */ public io.vertx.core.Future close() { io.vertx.core.Future ret = delegate.close().map(val -> val); return ret; } /** * Close the prepared query and release its resources. * @return */ public io.reactivex.Completable rxClose() { return AsyncResultCompletable.toCompletable($handler -> { this.close().onComplete($handler); }); } public static PreparedStatement newInstance(io.vertx.sqlclient.PreparedStatement arg) { return arg != null ? new PreparedStatement(arg) : null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy