0

就我而言,我在 postgres 中有一个枚举类型:

create type my_type as enum (string value);

还有一些表,使用它作为列类型:

create table A (
...
t my_type,
...
)

在 postgres 中,我可以像这样在表 A 中插入新记录:

insert into A values(..., 'my_type_value', ...);

Scalikejdbc 生成正确的 sql:

 insert into A (...) values (..., 'my_type_value', ...)

但失败并出现错误:

错误:列“t”的类型为 my_type,但表达式的类型为字符变化 提示:您需要重写或强制转换表达式。

我试图这样做:

object MyType extends Enumeration {...}
case class A(..., t: MyType, ...)
object A extends SQLSyntaxSupport[A] {
  def apply(rs: WrappedResultSet): A = A(..., rs.getString('t'), ...)
}

另外,我尝试在 Scala 代码中添加枚举类型的隐式转换:

object MyType extends Enumeration {
   implicit def stringToValue...
   implicit def valueToString ...
}

但这也没有帮助。

插入代码如下所示:

 withSQL {
      insertInto(A).namedValues(
        ...
        A.column.t-> e.t, // e - passed entity into insert fun
        ....
      )
    }.update().apply()
4

1 回答 1

0

最后,解决了。我必须添加隐式转换器:

 implicit val valueToParameterBinder: ParameterBinderFactory[MyType] = ParameterBinderFactory {
    value => (stmt, indx) => stmt.setObject(indx, value, Types.OTHER)
  }

object A extends SQLSyntaxSupport[A] {
  def apply(rs: WrappedResultSet): A = A(..., rs.getString('t'), ...) // just call getString as usual
}
于 2018-10-19T09:59:27.113 回答