Skip to content

Commit a4fdfc0

Browse files
committed
Corrected sample for 'connect_to_database_using_custom_params'.
1 parent b77fb02 commit a4fdfc0

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

src/DatabaseLibrary/__init__.pyc

-96 Bytes
Binary file not shown.

src/DatabaseLibrary/assertion.pyc

0 Bytes
Binary file not shown.

src/DatabaseLibrary/connection_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ def connect_to_database_using_custom_params(self, dbapiModuleName=None, db_conne
8080
8181
Example usage:
8282
| # for psycopg2 |
83-
| Connect To Database Using Custom Params | psycopg2 | "database='my_db_test', user='postgres', password='s3cr3t', host='tiger.foobar.com', port=5432" |
83+
| Connect To Database Using Custom Params | psycopg2 | database='my_db_test', user='postgres', password='s3cr3t', host='tiger.foobar.com', port=5432 |
8484
8585
| # for JayDeBeApi |
86-
| Connect To Database Using Custom Params | JayDeBeApi | "'oracle.jdbc.driver.OracleDriver', 'my_db_test', 'super_admin', 's3cr3t'" |
86+
| Connect To Database Using Custom Params | JayDeBeApi | 'oracle.jdbc.driver.OracleDriver', 'my_db_test', 'system', 's3cr3t' |
8787
"""
8888
db_api_2 = __import__(dbapiModuleName);
8989

624 Bytes
Binary file not shown.

src/DatabaseLibrary/query.pyc

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)