add override tracking for db credentials
This commit is contained in:
parent
6ae6866f3b
commit
1f4c020df9
1 changed files with 10 additions and 10 deletions
|
|
@ -31,16 +31,16 @@ namespace db {
|
||||||
|
|
||||||
// credentials for database access
|
// credentials for database access
|
||||||
struct db_credentials_t {
|
struct db_credentials_t {
|
||||||
std::string server;
|
std::string server = "";
|
||||||
bool server_override;
|
bool server_override = false;
|
||||||
int port;
|
int port = 0;
|
||||||
bool port_override;
|
bool port_override = false;
|
||||||
std::string uname;
|
std::string uname = "";
|
||||||
bool uname_override;
|
bool uname_override = false;
|
||||||
std::string pwd;
|
std::string pwd = "";
|
||||||
bool pwd_override;
|
bool pwd_override = false;
|
||||||
std::string dbase;
|
std::string dbase = "";
|
||||||
bool dbase_override;
|
bool dbase_override = false;
|
||||||
int version;
|
int version;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue