File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 16
16
DB_INIT : |
17
17
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=P@ssw0rd" -e "MSSQL_PID=Express" -p 1433:1433 -d --name sqlexpress mcr.microsoft.com/mssql/server:2019-latest;
18
18
- DB : SqlServer2008-MicrosoftDataSqlClientDriver
19
- CONNECTION_STRING : " Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
19
+ CONNECTION_STRING : " Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;TrustServerCertificate=true; "
20
20
OS : ubuntu-latest
21
21
DB_INIT : |
22
22
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=P@ssw0rd" -e "MSSQL_PID=Express" -p 1433:1433 -d --name sqlexpress mcr.microsoft.com/mssql/server:2019-latest;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ environment:
5
5
- DB : SqlServer2008
6
6
CONNECTION_STRING : Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
7
7
- DB : SqlServer2008-MicrosoftDataSqlClientDriver
8
- CONNECTION_STRING : Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
8
+ CONNECTION_STRING : Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;TrustServerCertificate=true;
9
9
- DB : Firebird
10
10
- DB : Firebird4
11
11
- DB : MySQL
Original file line number Diff line number Diff line change 56
56
<ItemGroup >
57
57
<PackageReference Include =" log4net" Version =" 3.0.2" />
58
58
<PackageReference Include =" Microsoft.AspNetCore.OData" Version =" 7.7.0" />
59
- <PackageReference Include =" Microsoft.Data.SqlClient" Version =" 3 .1.5 " />
59
+ <PackageReference Include =" Microsoft.Data.SqlClient" Version =" 5 .1.6 " />
60
60
<PackageReference Include =" NHibernate.Caches.CoreDistributedCache.Memory" Version =" 5.9.0" />
61
61
<PackageReference Include =" NHibernate.Caches.Util.JsonSerializer" Version =" 5.9.0" />
62
62
<PackageReference Include =" System.Data.SQLite.Core" Version =" 1.0.117" />
Original file line number Diff line number Diff line change 72
72
<target name =" setup-teamcity-sqlServer-MicrosoftDataSqlClientDriver" >
73
73
<property name =" db-service" value =" MSSQL$SQLEXPRESS" />
74
74
<property name =" nhibernate.connection.driver_class" value =" NHibernate.Driver.MicrosoftDataSqlClientDriver" />
75
+ <property name =" nhibernate.connection.connection_string" value =" Server=(local);initial catalog=nhibernate;Integrated Security=SSPI;TrustServerCertificate=true;" />
75
76
</target >
76
77
77
78
<target name =" setup-teamcity-sqlServer2012" >
You can’t perform that action at this time.
0 commit comments