gpt4 book ai didi

python - numpy 数组 <=> python DB-API 适配器?

转载 作者:行者123 更新时间:2023-11-28 16:53:42 25 4
gpt4 key购买 nike

有谁知道除了atpy之外,numpy数组和sqlite数据库之间还有其他适配器吗?

谢谢!

Rgs,

KC

最佳答案

您可以使用默认包 sqlite3 吗?

In [1]: import sqlite3

In [3]: conn = sqlite3.connect('test.db')

In [4]: cur = conn.cursor()

In [5]: cur.execute('select * from table1')
Out[5]: <sqlite3.Cursor object at 0xa3142c0>

In [6]: scipy.array(cur.fetchall())
Out[6]:
array([[ 1., 2.],
[ 3., 4.]])

关于python - numpy 数组 <=> python DB-API 适配器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3725394/

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