Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
6e43716d
Commit
6e43716d
authored
Sep 29, 2021
by
Steven Murray
Browse files
Added comment for rdbms::Login::s_hiddenPassword and made it a constant
parent
8c070b1e
Changes
2
Hide whitespace changes
Inline
Side-by-side
rdbms/Login.cpp
View file @
6e43716d
...
...
@@ -39,7 +39,7 @@ const char *Login::s_fileFormat = "one of "
"mysql://<username>:<password>@<host>:<port>/<db_name> or "
"postgresql:[connectinfo | URI]"
;
std
::
string
Login
::
s_hiddenPassword
=
"******"
;
const
std
::
string
Login
::
s_hiddenPassword
=
"******"
;
const
std
::
string
Login
::
DbTypeAndConnectionDetails
::
in_memory
=
"in_memory"
;
const
std
::
string
Login
::
DbTypeAndConnectionDetails
::
oracle
=
"oracle"
;
...
...
rdbms/Login.hpp
View file @
6e43716d
...
...
@@ -257,7 +257,10 @@ struct Login {
*/
static
const
char
*
s_fileFormat
;
static
std
::
string
s_hiddenPassword
;
/**
* String displayed instead of the actual password.
*/
static
const
std
::
string
s_hiddenPassword
;
private:
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment