Skip to content

Commit 790a0a1

Browse files
committed
Add new storage configurations + enrich supported databases list
1 parent d27afbb commit 790a0a1

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

Orm/Xtensive.Orm.Tests.Framework/Orm.config

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232

3333
<domain name="mssql2019"
3434
connectionUrl="sqlserver://localhost\DO_SQL2019/DO-Tests?MultipleActiveResultSets=True" />
35+
36+
<domain name="mssql2022"
37+
connectionUrl="sqlserver://localhost\DO_SQL2022/DO-Tests?MultipleActiveResultSets=True" />
3538

3639
<domain name="pgsql83"
3740
connectionUrl="postgresql://dotest:dotest@localhost:5483/dotest" />
@@ -66,6 +69,9 @@
6669
<domain name="pgsql140"
6770
connectionUrl="postgresql://dotest:dotest@localhost:54140/dotest" />
6871

72+
<domain name="pgsql150"
73+
connectionUrl="postgresql://dotest:dotest@localhost:54150/dotest" />
74+
6975
<domain name="oracle10"
7076
connectionUrl="oracle://dotest:dotest@localhost:5510/ora10" />
7177

@@ -119,6 +125,9 @@
119125
<domain name="mssql2019cs" provider="sqlserver"
120126
connectionString="Data Source=localhost\DO_SQL2019;Initial Catalog=DO-Tests;Integrated Security=True;MultipleActiveResultSets=True" />
121127

128+
<domain name="mssql2022cs" provider="sqlserver"
129+
connectionString="Data Source=localhost\DO_SQL2022;Initial Catalog=DO-Tests;Integrated Security=True;MultipleActiveResultSets=True" />
130+
122131
<domain name="pgsql83cs" provider="postgresql"
123132
connectionString="HOST=localhost;PORT=5483;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
124133

@@ -152,6 +161,9 @@
152161
<domain name="pgsql140cs" provider="postgresql"
153162
connectionString="HOST=localhost;PORT=54140;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
154163

164+
<domain name="pgsql150cs" provider="postgresql"
165+
connectionString="HOST=localhost;PORT=54150;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
166+
155167
<domain name="oracle10cs" provider="oracle"
156168
connectionString="DATA SOURCE=&quot;(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=5510))(CONNECT_DATA=(SERVICE_NAME=ora10)))&quot;;USER ID=dotest;PASSWORD=dotest" />
157169

ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
DataObjects.Net is a persistence and object-relational mapping framework for the Microsoft .NET. It allows developers to define persistent objects as well as business logic directly in C#, Visual Basic or F#. The persistent objects can be retrieved by LINQ queries. Persistent data can be stored in SQL Servers. In contrast to many other ORM frameworks the database model is generated and maintained automatically.
44

55
Supported databases:
6-
- MS SQL Server 2008 R2, 2012, 2014, 2016, 2017, 2019
6+
- MS SQL Server 2008 R2, 2012, 2014, 2016, 2017, 2019, 2022
77
- MS Azure SQL Database
88
- Oracle 10g, 11g
9-
- PostgreSQL 8.3, 8.4, 9.0, 9.1, 9.2, 10, 11
9+
- PostgreSQL 8.3, 8.4, 9.0, 9.1, 9.2, 10, 11, 12, 13, 14, 15
1010
- MySQL 5.5, 5.6
1111
- Firebird 2.5
1212
- Sqlite 3

0 commit comments

Comments
 (0)