Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-1511473: "type[type]" is incompatible with "type[SnowflakeCursor]" #1984

Open
tekumara opened this issue Jun 28, 2024 · 5 comments
Open
Assignees
Labels
status-triage_done Initial triage done, will be further handled by the driver team

Comments

@tekumara
Copy link
Contributor

Python version

3.9

Operating system and processor architecture

macos

Installed packages

snowflake-connector-python==3.11.0

What did you do?

*_, dcur = conn.execute_string("select 1",cursor_class=snowflake.connector.cursor.DictCursor)
dcur.fetchall()

What did you expect to see?

No type error, but get this in pyright/pylance/vscode:

CleanShot 2024-06-28 at 22 11 56@2x

Can you set logging to DEBUG and collect the logs?

No response

@github-actions github-actions bot changed the title "type[type]" is incompatible with "type[SnowflakeCursor]" SNOW-1511473: "type[type]" is incompatible with "type[SnowflakeCursor]" Jun 28, 2024
@sfc-gh-sghosh sfc-gh-sghosh self-assigned this Jul 1, 2024
@sfc-gh-sghosh
Copy link

Hello @tekumara ,

Thanks for raising the issue, we are looking into it, will update.

Regards,
Sujan

@sfc-gh-sghosh sfc-gh-sghosh added status-triage Issue is under initial triage and removed needs triage bug labels Jul 1, 2024
@sfc-gh-sghosh
Copy link

Hello @tekumara ,

Could you try the code in this way, I just tried and I am not getting any compilation error in VScode

`cursor1 = con.cursor(snowflake.connector.cursor.DictCursor)

try:
    r1 = cursor1.execute("select 1").fetchall()
finally:
    cursor1.close()`

@sfc-gh-sghosh sfc-gh-sghosh added status-triage_done Initial triage done, will be further handled by the driver team and removed status-triage Issue is under initial triage labels Jul 2, 2024
@tekumara
Copy link
Contributor Author

tekumara commented Jul 2, 2024

That's works but I'm not using execute I'm using execute_string in my codebase to execute multiple sql statements (I simplified it for the MRE above)

@sfc-gh-sghosh
Copy link

sfc-gh-sghosh commented Jul 23, 2024

Hello @tekumara ,

You need to split the statements if using multiple statements

Example
`main_cursor = con.cursor(snowflake.connector.cursor.DictCursor)
print("cursor created")

sql_script = """
CREATE OR REPLACE TABLE my_table (id INT, name STRING);
INSERT INTO my_table VALUES (1, 'Alice'), (2, 'Bob');
SELECT * FROM my_table;
"""

# Split the script into individual statements
sql_statements = sql_script.strip().split(';')


for statement in sql_statements:
    if statement.strip():  # Only execute non-empty statements
        main_cursor.execute(statement)
        try:
            results_cursor = main_cursor.fetchall()
            for row in results_cursor:
                print(row)
        except snowflake.connector.errors.ProgrammingError:
            
            pass

main_cursor.close()
con.close()`

Output:
cursor created
{'status': 'Table MY_TABLE successfully created.'}
{'number of rows inserted': 2}
{'ID': 1, 'NAME': 'Alice'}
{'ID': 2, 'NAME': 'Bob'}

Regards,
Sujan

@tekumara
Copy link
Contributor Author

tekumara commented Jul 23, 2024

Isn't that what execute_string does for me?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status-triage_done Initial triage done, will be further handled by the driver team
Projects
None yet
Development

No branches or pull requests

2 participants