databricks-sql-python icon indicating copy to clipboard operation
databricks-sql-python copied to clipboard

Databricks SQL Connector for Python

Results 122 databricks-sql-python issues
Sort by recently updated
recently updated
newest added

I have a question regarding accessing delta lake tables by python. Similar to [this SQLAlchemy example](https://github.com/databricks/databricks-sql-python/blob/f6bb5d6da2bffae7d885d2ee47121955e8ea64c6/examples/sqlalchemy.py), I tried to save something in a `BINARY` column like: ```python example_bytes = Column(BINARY)...

enhancement
sqlalchemy

This is not the same as #160 as the error message is slightly different and the fix for that does not work. This happens well before an hour or any...

With a `dev` catalog containing `default` and `my_schema` schemas, I get different results depending on the name quoting: ```python import os from databricks import sql host = os.getenv("DATABRICKS_HOST") http_path =...

DRAFT: This scaffolds in the code for running parallel dialect compliance tests. Setting this up isn't documented anywhere and the implementation here doesn't actually work because the test runner keeps...

Getting the following error when trying to connect to our warehouse: ``` from databricks import sql your_token = '' connection = sql.connect( server_hostname="cloud.databricks.com", http_path="/sql/1.0/warehouses/", access_token=your_token ) MaxRetryError: HTTPSConnectionPool(host='.cloud.databricks.com', port=443): Max...

Had to integrate Python repo with continuous integration that Ben set up.

Synk security scan is giving Denial of Service (DoS) & NULL Pointer Dereference & Buffer Overflow to numpy==1.21.3 version. I couldn't locate requirements.txt file for databricks-sql-python package. Is the version...

Hi! I'm running into an issue that this package requires a very specific numpy package `1.23.4`. Aside from wondering why it needs numpy in the first place (I didn't dive...

I am facing with this connector. It works 100% of the time from my desktop but when i try from an Azure VM it only randomly succeeds. I did a...

I found s strange issue that only cached result is returned when using python SQL. I am testing the same query in a time span of one hour and the...