Skip to content

Commit 7b5155c

Browse files
committed
Fix another mistakes in readme files
1 parent 84b71a5 commit 7b5155c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Orm/Xtensive.Orm.MySql/NuGetContent/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Create a domain configuration configuration with connection url similar to this
1313
or, alternatively, use connection string like
1414

1515
var domainConfiguration = new DomainConfiguration("mysql",
16-
"Server=localhost;Port=3306;Database=tests;Uid=someuser;Pwd=Sometest;");
16+
"Server=localhost;Port=3306;Database=tests;Uid=someuser;Pwd=somepassword;");
1717

1818
After that, if connection settings are valid, build Domain and use it as usual.

Orm/Xtensive.Orm.Oracle/NuGetContent/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Create a domain configuration configuration with connection url similar to this
1212

1313
or, alternatively, use connection string like
1414

15-
var domainConfiguration = new DomainConfiguration("mysql",
15+
var domainConfiguration = new DomainConfiguration("oracle",
1616
"DATA SOURCE="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=xe)))";USER ID=someuser;PASSWORD=somepassword");
1717

1818
After that, if connection settings are valid, build Domain and use it as usual.

0 commit comments

Comments
 (0)