python中sqllite插入numpy数组到数据库的实现方法
python中sqllite插入numpy数组到数据库的实现方法
sqllite里面并没有与numpy的array
类型对应的数据类型,通常我们都需要将数组转换为text之后再插入到数据库中,或者以blob
类型来存储数组数据,除此之外我们还有另一种方法,能够让我们直接以array
来插入和查询数据,实现代码如下
import sqlite3 import numpy as np import io def adapt_array(arr): out = io.BytesIO() np.save(out, arr) out.seek(0) return sqlite3.Binary(out.read()) def convert_array(text): out = io.BytesIO(text) out.seek(0) return np.load(out) # 当插入数据的时候将array转换为text插入 sqlite3.register_adapter(np.ndarray, adapt_array) # 当查询数据的时候将text转换为array sqlite3.register_converter("array", convert_array) #连接数据库 con = sqlite3.connect("test.db", detect_types=sqlite3.PARSE_DECLTYPES) cur = con.cursor() #创建表 cur.execute("create table test (arr array)") #插入数据 x = np.arange(12).reshape(2,6) cur.execute("insert into test (arr) values (?)", (x, )) #查询数据 cur.execute("select arr from test") data = cur.fetchone()[0] print(data) # [[ 0 1 2 3 4 5] # [ 6 7 8 9 10 11]] print(type(data)) # <type 'numpy.ndarray'>
实例代码看下Python 操作sqlite数据库及保存查询numpy类型数据
# -*- coding: utf-8 -*- ''' Created on 2019年3月6日 @author: Administrator ''' import sqlite3 import numpy as np import io def adapt_array(arr): out = io.BytesIO() np.save(out, arr) out.seek(0) return sqlite3.Binary(out.read()) def convert_array(text): out = io.BytesIO(text) out.seek(0) return np.load(out) # 创建数据库连接对象 conn = sqlite3.connect('sample_database.db', detect_types=sqlite3.PARSE_DECLTYPES) # 连接到SQLite数据库 ''' sqlite3.PARSE_DECLTYPES 本常量使用在函数connect()里,设置在关键字参数detect_types上面。表示在返回一行值时,是否分析这列值的数据类型定义。如果设置了本参数,就进行分析数据表列的类型,并返回此类型的对象,并不是返回字符串的形式。 sqlite3.PARSE_COLNAMES 本常量使用在函数connect()里,设置在关键字参数detect_types上面。表示在返回一行值时,是否分析这列值的名称。如果设置了本参数,就进行分析数据表列的名称,并返回此类型的名称 ''' # 参数:memory:来创建一个内存数据库 # conn = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES) # Converts np.array to TEXT when inserting sqlite3.register_adapter(np.ndarray, adapt_array) # Converts TEXT to np.array when selecting sqlite3.register_converter("array", convert_array) x = np.arange(12).reshape(2, 6) # conn = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES) cursor = conn.cursor() # 创建数据库表 cursor.execute("create table test (arr array)") # 插入一行数据 cursor.execute("insert into test (arr) values (?)", (x,)) # 提交 conn.commit() cursor.execute("select arr from test") data = cursor.fetchone()[0] print(data) ''' [[ 0 1 2 3 4 5] [ 6 7 8 9 10 11]] ''' print(type(data)) ''' <class 'numpy.ndarray'> ''' cursor.close() # 关闭Cursor conn.close() # 关闭数据库
以上就是python中sqllite插入numpy数组到数据库的实现方法的详细内容,更多关于python numpy数组的资料请关注趣讯吧其它相关文章!
推荐阅读
-
Python中怎么动态声明变量赋值
这篇文章将为大家详细讲解有关Python中怎么动态声明变量赋值,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文...
-
python中变量的存储原理是什么
-
Python中怎么引用传递变量赋值
这篇文章将为大家详细讲解有关Python中怎么引用传递变量赋值,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文...
-
python中怎么获取程序执行文件路径
python中怎么获取程序执行文件路径,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的...
-
Python中如何获取文件系统的使用率
Python中如何获取文件系统的使用率,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴...
-
Python中怎么获取文件的创建和修改时间
这篇文章将为大家详细讲解有关Python中怎么获取文件的创建和修改时间,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读...
-
python中怎么获取依赖包
今天就跟大家聊聊有关python中怎么获取依赖包,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据...
-
python怎么实现批量文件加密功能
-
python中怎么实现threading线程同步
小编给大家分享一下python中怎么实现threading线程同步,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!...
-
python下thread模块创建线程的方法
本篇内容介绍了“python下thread模块创建线程的方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来...