mirror of
https://github.com/TaKO8Ki/gobang
synced 2024-10-31 03:20:33 +00:00
5da6b1b796
* move utils into database module * draw help in connections view * support postgres * add table_schema field * implement Pool for Postgres * fix database tree for postgres * add tests for selection_top, bottom * fix clippy warnings * remove unused function * get schema * fix clippy warnings * show user defined types * fix cell with when selecting far right cell * split tests into tree functions * convert TEXT[] to Vec<String> * add prefix * remove column pattern matching
34 lines
444 B
TOML
34 lines
444 B
TOML
[[conn]]
|
|
type = "mysql"
|
|
name = "sample"
|
|
user = "root"
|
|
host = "localhost"
|
|
port = 3306
|
|
|
|
[[conn]]
|
|
type = "mysql"
|
|
user = "root"
|
|
host = "localhost"
|
|
port = 3306
|
|
database = "world"
|
|
|
|
[[conn]]
|
|
type = "mysql"
|
|
user = "root"
|
|
host = "localhost"
|
|
port = 3306
|
|
database = "employees"
|
|
|
|
[[conn]]
|
|
type = "postgres"
|
|
user = "postgres"
|
|
host = "localhost"
|
|
port = 5432
|
|
|
|
[[conn]]
|
|
type = "postgres"
|
|
user = "postgres"
|
|
host = "localhost"
|
|
port = 5432
|
|
database = "dvdrental"
|