You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
funtoObservable(): Observable<T> = selectOperation?.toObservable(mapper) ?: insertOperation?.toObservable(mapper) ?:throwException("Operation must be provided")
403
+
funtoFlowable(): Flowable<T> = selectOperation?.toFlowable(mapper) ?: insertOperation?.toFlowable(mapper) ?:throwException("Operation must be provided")
404
+
funtoSingle(): Single<T> = selectOperation?.toSingle(mapper) ?: insertOperation?.toSingle(mapper) ?:throwException("Operation must be provided")
405
+
funtoMaybe(): Maybe<T> = selectOperation?.toMaybe(mapper) ?: insertOperation?.toMaybe(mapper) ?:throwException("Operation must be provided")
406
+
funtoSequence(): ResultSetSequence<T> = selectOperation?.toSequence(mapper) ?: insertOperation?.toSequence(mapper) ?:throwException("Operation must be provided")
407
+
funblockingFirst() = selectOperation?.blockingFirst(mapper) ?: insertOperation?.blockingFirst(mapper) ?:throwException("Operation must be provided")
408
+
funblockingFirstOrNull() = selectOperation?.blockingFirstOrNull(mapper) ?: insertOperation?.blockingFirstOrNull(mapper) ?:throwException("Operation must be provided")
409
+
}
410
+
393
411
fun PreparedStatement.processParameters(v:Array<outAny?>) = v.forEachIndexed { i,v2 -> processParameter(i,v2)}
394
412
395
413
fun PreparedStatement.processParameter(pos:Int, argVal:Any?) {
0 commit comments