我想在GetResult中使用命名引用而不是位置,所以不要这样:
implicit val getCoffeeResult = GetResult(r => Coffee(r.<<, r.<<, r.<<))
我可以这样写:
implicit val getCoffeeResult = GetResult(r => Coffee(r.get("name"), r.get("supID"),r.get("price")))
我可以命名结果吗?
答案 0 :(得分:3)
您可以通过结果集获取它:
r.rs.getString("name")