次の (Grails) ドメイン オブジェクトがあります。
class Country {
Integer id
char country_abbr
String country_name
static mapping = {
version false
id name: 'id'
table 'country'
id generator:'identity', column:'id'
}
static constraints = {
}}
「country テーブル」内の「country_abbr」フィールドのタイプはcharacter(2)です。ただし、ドメイン オブジェクトのデータ型 ( 'country_abbr' の場合) をStringに設定するたびに、初期化は次の例外で失敗します。
org.hibernate.HibernateException: Wrong column type in mydb.country for column country_abbr. Found: bpchar, expected: varchar(255)
一方、この型を Java charのままにしておくと、最初の文字だけが取得されます。このタイプにどのようにマッピングできますか? また、bpchar とは正確には何ですか?
ありがとう