PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Jak mogę utworzyć niestandardowy typ kolumny za pomocą Typesafe Slick w Scali?

Cytując z dokumentów ( http://slick.typesafe.com/doc/1.0.1/lifted-embedding.html#user-defined-functions-and-types ):

// An algebraic data type for booleans
sealed trait Bool
case object True extends Bool
case object False extends Bool

// And a TypeMapper that maps it to Int values 1 and 0
implicit val boolTypeMapper = MappedTypeMapper.base[Bool, Int](
  { b => if(b == True) 1 else 0 },    // map Bool to Int
  { i => if(i == 1) True else False } // map Int to Bool
)

Dostosowanie do stanu pliku:

sealed trait FileStatus
case object New extends FileStatus
case object Uploading extends FileStatus
...

implicit val fileStatusTypeMapper = MappedTypeMapper.base[FileStatus, String](
  {
    case New => "new"
    case Uploading => "uploading"
    ...
  },{
    case "new" => New
    case "uploading" => Uploading
    ...
  }
)

Aktualizacja:

Inna, mniej zbędna, ale prawdopodobnie także mniej przejrzysta wersja:

sealed trait FileStatus
case object New extends FileStatus
case object Uploading extends FileStatus
...

val statusMap = Map(
    New -> "new",
    Uploading -> "uploading",
    ...
)

implicit val fileStatusTypeMapper = MappedTypeMapper.base[FileStatus, String](
  statusMap,
  statusMap.map(_.swap)
)


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak działa funkcja LocalTime() w PostgreSQL

  2. Jak upsertować pandy DataFrame do tabeli PostgreSQL?

  3. Railsy - jak przechowywać duże liczby, takie jak 100000076685963

  4. Postgres tworzący tabelę z tablicą kluczy obcych

  5. Funkcja okna SQL z klauzulą ​​where?