How to set collation for MS SQL Server using Testcontainers

387 Views Asked by At

Using Testcontainers, how can I set the database collation when starting a docker image for a MS SQL Server database?

1

There are 1 best solutions below

0
On

On the container, you should just add an environment variable.

String dockerImageName = // here the specific imahe + tag
String collation = // a valid collation, e.g. "Latin1_General_CS_AS"
MSSQLServerContainer mssqlServerContainer = new MSSQLServerContainer(dockerImageName);
mssqlServerContainer.addEnv("MSSQL_COLLATION", collation);