node-query/test/config.json

37 lines
624 B
JSON
Raw Normal View History

2014-10-23 10:53:16 -04:00
{
"mysql2": {
2014-10-23 10:53:16 -04:00
"driver": "mysql",
"connection": {
2014-10-23 10:53:16 -04:00
"host": "localhost",
"user": "test",
"password": "",
"database": "test"
}
},
"pg": {
"driver": "pg",
"connection": "postgres://test:test@localhost/test"
},
"pg-object": {
"driver": "pg",
"connection": {
2014-10-23 10:53:16 -04:00
"host": "localhost",
"user": "test",
"password": "test",
2014-10-23 10:53:16 -04:00
"database": "test"
}
},
2014-10-31 11:57:44 -04:00
"dblite": {
"driver": "sqlite",
"connection": ":memory:"
},
"node-firebird": {
"driver": "firebird",
"connection": {
"host": "127.0.0.1",
"database": "/../FB_TEST_DB.FDB",
"user": "SYSDBA",
"password": "masterkey"
}
2014-10-23 10:53:16 -04:00
}
}