There was an error while loading. Please reload this page.
1 parent fe05129 commit 266cdf8Copy full SHA for 266cdf8
mysql-async/src/main/scala/com/github/mauricio/async/db/mysql/MySQLQueryResult.scala
@@ -19,9 +19,9 @@ package com.github.mauricio.async.db.mysql
19
import com.github.mauricio.async.db.{ResultSet, QueryResult}
20
21
class MySQLQueryResult(
22
- rowsAffected: Long,
23
- message: String,
24
- lastInsertId: Long,
25
- statusFlags: Int,
26
- warnings: Int,
27
- rows: Option[ResultSet] = None) extends QueryResult(rowsAffected, message, rows)
+ rowsAffected: Long,
+ message: String,
+ val lastInsertId: Long,
+ val statusFlags: Int,
+ val warnings: Int,
+ rows: Option[ResultSet] = None) extends QueryResult(rowsAffected, message, rows)
0 commit comments