0
我想使用hibernate-core 4.1.4中的org.hibernate.tool.hbm2ddl.SchemaExport來生成/導出Sybase ASE 15.5模式,其中應創建特定列作爲UNIVARCHAR而不是常規VARCHAR數據類型。我怎麼做?我最喜歡的方式是使用註釋。使用自定義類型的SchemaExport
我想使用hibernate-core 4.1.4中的org.hibernate.tool.hbm2ddl.SchemaExport來生成/導出Sybase ASE 15.5模式,其中應創建特定列作爲UNIVARCHAR而不是常規VARCHAR數據類型。我怎麼做?我最喜歡的方式是使用註釋。使用自定義類型的SchemaExport
通過在Column註釋中給出SQL片段作爲值columnDefinition屬性。
例如:
@Column(name="columnName", columnDefinition="univarchar(50)")