Skip to content

Commit 9377bca

Browse files
committed
Correct example of connection string for PostgreSQL with pooling option
1 parent 532b3be commit 9377bca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm.Manual/DomainAndSession/DomainAndSessionSample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class DomainAndSessionSample : HasConfigurationAccessTest
4646
public const string OracleUrl1 = @"oracle://user:password@localhost/MyDatabase";
4747
public const string OracleUrl2 = @"oracle://user:password@dbServer:5511/MyDatabase";
4848
public const string PostrgeSqlUrl1 = @"postgresql://user:[email protected]:8032/MyDatabase?Encoding=Unicode";
49-
public const string PostrgeSqlUrl2 = @"postgresql://user:password@dbServer/MyDatabase?Pooling=on&MinPoolSize=1&MaxPoolSize=5";
49+
public const string PostrgeSqlUrl2 = @"postgresql://user:password@dbServer/MyDatabase?Pooling=True&MinPoolSize=1&MaxPoolSize=5";
5050
public const string InMemoryUrl = @"memory://localhost/MyDatabase";
5151

5252
#endregion

0 commit comments

Comments
 (0)