• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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 NumPy灰度图像的压缩原理讲解
    • Python多进程共享numpy 数组的方法
    • python图像处理基本操作总结(PIL库、Matplotlib及Numpy)
    • python numpy中multiply与*及matul 的区别说明
    • 浅谈Python numpy创建空数组的问题
    • Python NumPy中diag函数的使用说明
    • Python机器学习三大件之一numpy
    • python利用numpy存取文件案例教程
    上一篇:利用Python第三方库实现预测NBA比赛结果
    下一篇:Python实现DBSCAN聚类算法并样例测试
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    python中sqllite插入numpy数组到数据库的实现方法 python,中,sqllite,插入,numpy,