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
|
||||
struct db_credentials_t {
|
||||
std::string server;
|
||||
bool server_override;
|
||||
int port;
|
||||
bool port_override;
|
||||
std::string uname;
|
||||
bool uname_override;
|
||||
std::string pwd;
|
||||
bool pwd_override;
|
||||
std::string dbase;
|
||||
bool dbase_override;
|
||||
std::string server = "";
|
||||
bool server_override = false;
|
||||
int port = 0;
|
||||
bool port_override = false;
|
||||
std::string uname = "";
|
||||
bool uname_override = false;
|
||||
std::string pwd = "";
|
||||
bool pwd_override = false;
|
||||
std::string dbase = "";
|
||||
bool dbase_override = false;
|
||||
int version;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue