streamQueryFor method

Stream<Result<QueryResult>> streamQueryFor(
  1. Connection conn,
  2. String sql
)

streamQuery overload that accepts a Connection.

Implementation

Stream<Result<QueryResult>> streamQueryFor(
  Connection conn,
  String sql,
) =>
    streamQuery(conn.id, sql);