- 6622 Views
- 1 replies
- 0 kudos
while using the sqlalchemy, unable to connect with sql server from databricks:
user='user@host.mysql.database.azure.com'
password='P@test'
host="host.mysql.database.azure.com"
database = "db"
connect_args={'ssl':{'fake_flag_to_enable_tls': True}}
c...
- 6622 Views
- 1 replies
- 0 kudos
Latest Reply
We can use urllib.parse to handle special characters. Here is an example:import urllib.parse
user='user@host.mysql.database.azure.com'
password=urllib.parse.quote_plus("P@test")
host="host.mysql.database.azure.com"
database = "db"
connect_args={'...
- 3733 Views
- 1 replies
- 0 kudos
- 3733 Views
- 1 replies
- 0 kudos
Latest Reply
SQL Analytics actually uses several layers of caching. Some documentation about the different layers can be found here in the documentation. There are two primary layers that users will experience. 1) The first is that the actual data results of spec...