Skip to content

Instantly share code, notes, and snippets.

@MPriess
Created January 16, 2012 09:54
Show Gist options
  • Save MPriess/1620048 to your computer and use it in GitHub Desktop.
Save MPriess/1620048 to your computer and use it in GitHub Desktop.
Java Hibernate
public class UnicodeSQLServerDialect extends SQLServerDialect {
public UnicodeSQLServerDialect() {
super();
registerColumnType(Types.VARCHAR, 255, "nvarchar($l)");
registerColumnType(Types.CHAR, "nchar(1)");
registerColumnType(Types.CLOB, "nvarchar(max)");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment