Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _client/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Then, the example creates a connection with the SQL Server host. The syntax of t
server = 'host.example.com'
database = 'postgres'
username = 'postgres'
password = '1safepassword'
password = '********'

# Establish a connection
try:
Expand Down Expand Up @@ -215,7 +215,7 @@ server = 'host.example.com'
port = 1433
database = 'master'
username = 'babelfish_user'
password = '1safepassword'
password = '********'

pg_database = "babelfish_db"
pg_schema = "master_dbo"
Expand Down
6 changes: 3 additions & 3 deletions assets/examples/tds.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
server = 'localhost'
port = 1433
database = 'master'
username = 'babelfish_user'
password = '12345678'
username = '<user_name>'
password = '********'

pg_database = "babelfish_db"
pg_schema = "master_dbo"
Expand Down Expand Up @@ -79,4 +79,4 @@ def main():
print("{}".format(row))

if __name__ == "__main__":
main()
main()
Loading