gpt4 book ai didi

python - pandas- fetch_pandas_all 连接器杀死内核

转载 作者:行者123 更新时间:2023-12-05 09:30:49 24 4
gpt4 key购买 nike

我在使用 Snowflake 的 pandas 连接器时遇到问题。

此代码的最后一行导致 python 内核立即死亡。关于如何诊断这种情况有什么建议吗?

import pyarrow
import snowflake.connector
import pandas as pd

ctx = snowflake.connector.connect(
user=********,
password=********,
account=********,
warehouse='compute_wh',
database='SNOWFLAKE_SAMPLE_DATA',
schema='WEATHER'
)
query = 'select * from weather_14_total'
cs = ctx.cursor()
cs.execute()
cs.fetch_pandas_all()

提前致谢。

最佳答案

我觉得你有点混淆了。

  1. 如果你想使用 Pandas ,here是正确的链接。这是 Snowflake 文档。

  2. 如果你愿意,你也可以不使用 pandas 而只用它:

    cs = ctx.cursor()

    尝试:

     cs.execute("SELECT col1, col2 FROM test_table ORDER BY col1")
    for (col1, col2) in cs:
    print('{0}, {1}'.format(col1, col2))

    最后:

     cs.close()

    或者:

    cs = ctx.cursor()

    query = "从表中选择 *"

    尝试:

     cs.execute(query)
    .....
    .....

    最后:

     cs.close()

此外,文档链接是 here .

关于python - pandas- fetch_pandas_all 连接器杀死内核,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69286094/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com