我正在将oracle迁移到sql服务器,我具有以下域:
class HDocument implements Serializable{
byte[] document
String name
static constraints = {
document(maxSize: 50000000)
}
static mapping = {
if (CH.config.database == "ORACLE") {
id generator:'sequence', params:[sequence:'hDocument_id']
}
document sqlType:'blob'
version false
}
}
在oracle工作中,但是在SQL Server中,当我启动该工具时,不要创建此表,我认为问题出在:document sqlType:'blob'