sqlor/databases.json

27 lines
392 B
JSON
Raw Normal View History

2021-07-22 16:32:18 +08:00
{
"mysql":{
"driver":"aiomysql",
"async_mode":true,
"coding":"utf8",
"dbname":"homedata",
"maxconn":100,
"kwargs":{
"user":"test",
"db":"homedata",
"password":"test123",
"host":"localhost"
}
},
"sqlite3":{
"driver":"aiosqlite",
"async_mode":true,
"coding":"utf8",
"dbname":"testdb",
"maxconn":100,
"kwargs":{
"database":"./ttttt.db"
}
}
}