postgresql – 如何根据Haskell Groundhog的数据库类型指定不同的列类型?

使用 Haskell中的Groundhog库,我希望实现一个在后端是Postgresql时使用“uuid”的列类型,否则只需使用“varchar”用于任何其他后端.虽然根据Groundhog.Core中的注释,这应该是可能的,我不完全确定如何从代理db中解包dbType,并且在groundhog-examples中没有这个例子,因为列类型已在那些中硬编码例子.

我想在Postgresql的案例匹配方面得到一些帮助,我会在排序之后解决剩下的问题.这是我在的地方:

instance PrimitivePersistField UUID where
  toPrimitivePersistValue _ uuid = PersistString $show uuid
  fromPrimitivePersistValue _ (PersistString a) = fromJust $UUIDmethods.fromString a

instance PersistField UUID where
  persistName _ = "UUID"
  toPersistValues = primToPersistValue
  fromPersistValues = primFromPersistValue
  dbType db _ = case db of
    Postgresql _ -> DbTypePrimitive (DbOther $OtherTypeDef [Left "uuid"]) False nothing nothing
    _ -> DbTypePrimitive (DbOther $OtherTypeDef [Left "varchar"]) False nothing nothing

在编译时出现了这个问题:

Couldn't match expected type ‘proxy db’
                with actual type ‘Postgresql’
    Relevant bindings include
      db :: proxy db (bound at basicGroundhog.hs:34:10)
      dbType :: proxy db -> UUID -> DbType
        (bound at basicGroundhag.hs:34:3)
    In the pattern: Postgresql _
    In a case alternative:
        Postgresql _
          -> DbTypePrimitive
               (DbOther $OtherTypeDef [Left "uuid"]) False nothing nothing
    In the expression:
      case db of {
        Postgresql _
          -> DbTypePrimitive
               (DbOther $OtherTypeDef [Left "uuid"]) False nothing nothing
        _ -> DbTypePrimitive
               (DbOther $OtherTypeDef [Left "varchar"]) False nothing nothing }

解决方法

您可以使用backendName在运行时检查数据库.最好将DbString用于认情况,以便groundhog可以选择更合适的类型.没有最大长度声明的Varchar在MysqL中无效.

dbType db _ = case backendName db of
   "postgresql" -> DbTypePrimitive (DbOther $OtherTypeDef [Left "uuid"]) False nothing nothing
    _ -> DbTypePrimitive DbString False nothing nothing

相关文章

项目需要,有个数据需要导入,拿到手一开始以为是mysql,结果...
本文小编为大家详细介绍“怎么查看PostgreSQL数据库中所有表...
错误现象问题原因这是在远程连接时pg_hba.conf文件没有配置正...
因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本...
wamp 环境 这个提示就是说你的版本低于10了。 先打印ph...
psycopg2.OperationalError: SSL SYSCALL error: EOF detect...