Returns stream of row from query result.
Result set from executed query
Query statement already executed
Returns statement warning if there is some for this result.
Returns statement warning if there is some for this result.
val res = SQL("EXEC stored_proc {p}").on("p" -> paramVal).executeQuery() res.statementWarning match { case Some(warning) => warning.printStackTrace() None case None => // go on with row parsing ... res.as(scalar[String].singleOpt) }
A result from execution of an SQL query, row data and context (e.g. statement warnings).
Result set from executed query