suspend fun SQLConnection.queryStreamAwait(sql: String): SQLRowStream
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
sql
- the SQL to execute. For example SELECT * FROM table ....
handler
- the handler which is called once the operation completes. It will return a SQLRowStream.
Return