Uses of Class
com.couchbase.client.java.query.QueryRow
Packages that use QueryRow
Package
Description
Holds all classes that are needed for the Couchbase Java SDK.
-
Uses of QueryRow in com.couchbase.client.java
Method parameters in com.couchbase.client.java with type arguments of type QueryRowModifier and TypeMethodDescriptionCluster.queryStreaming
(String statement, QueryOptions options, Consumer<QueryRow> rowAction) Executes a SQL++ query statement using the specified options, (query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server.Cluster.queryStreaming
(String statement, Consumer<QueryRow> rowAction) Executes a SQL++ query statement using default options, (no query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server.Scope.queryStreaming
(String statement, QueryOptions options, Consumer<QueryRow> rowAction) Executes a SQL++ query statement in this scope using the specified options, (query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server.Scope.queryStreaming
(String statement, Consumer<QueryRow> rowAction) Executes a SQL++ query statement in this scope using default options, (no query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server.