forked from bittercoder/Migrator.NET
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathappsettings.json
More file actions
24 lines (24 loc) · 741 Bytes
/
Copy pathappsettings.json
File metadata and controls
24 lines (24 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"DatabaseConnectionConfigs": [
{
"Id": "SQLite",
"ConnectionString": "Data Source=:memory:;version=3"
},
{
"Id": "SQLServer",
"ConnectionString": "Data Source=localhost;Initial Catalog=Whatever;user=sa;pwd=YourStrong@Passw0rd;encrypt=false"
},
{
"Id": "PostgreSQL",
"ConnectionString": "Server=localhost;Port=5432;Database=postgres;User Id=testuser;Password=testpass;Pooling=false;"
},
{
"Id": "Oracle",
"ConnectionString": "Data Source=//localhost:1521/FREEPDB1;User Id=k;Password=k;"
},
{
"Id": "MySQL",
"ConnectionString": "Server=127.0.0.1;Port=3306;Database=testdb;User Id=testuser;Password=testpass;"
}
]
}