credexil 0.9.2
Keep database credentials outside the sourcecode
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
credexil
Keep database credentials outside the sourcecode
This library makes it easy to load credentials from external files and use it for database clients. It was build with MySQL/MariaDB in mind - but it can surely be used for similar credential structures.
The credential file
The format of the file, which stores the information is very simple and ini-like
# this is a comment
; this is a comment
[connection_name]
host = 127.0.0.1
port = 3306
user = MyUser
pwd = MyPassword
db = MyDatabase
[2nd test connection]
host = localhost
user = some_user
pwd = 1234
Usage
Credential[] credentials = .load("./source/test.cred");
assert(credentials.length == 3);
assert(credentials.get("connection_name").connectionName == "connection_name");
assert(credentials.get("connection_name").host == "127.0.0.1");
assert(credentials.get("connection_name").port == 3306);
assert(credentials.get("connection_name").user == "MyUser");
assert(credentials.get("connection_name").pwd == "MyPassword");
assert(credentials.get("connection_name").db == "MyDatabase");
assert(credentials.get("connection_name").connectionString == "host=127.0.0.1;port=3306;user=MyUser;pwd=MyPassword;db=MyDatabase");
Credential _2ndTestCred = .load("./source/test.cred").get("2nd test connection");
assert(_2ndTestCred.connectionName == "2nd test connection" );
assert(_2ndTestCred.connectionString == "host=localhost;user=some_user;pwd=1234" );
assert(_2ndTestCred.host == "localhost" );
assert(_2ndTestCred.user == "some_user" );
assert(_2ndTestCred.pwd == "1234" );
assert(_2ndTestCred.port.isNull );
assert(_2ndTestCred.db.isNull );
- Registered by Martin Brzenska
- 0.9.2 released 7 years ago
- mab-on/credexil
- MIT
- Copyright © 2017, Martin Brzenska
- Authors:
- Dependencies:
- none
- Versions:
-
0.9.2 2017-Jul-17 ~master 2017-Jul-17 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
23 downloads total
-
- Score:
- 0.5
- Short URL:
- credexil.dub.pm