sqlite3 演示

# python sqlite

import sqlite3
import os

"""SQLite数据库是一款很是小巧的嵌入式开源数据库软件,也就是说
没有独立的维护进程,全部的维护都来自于程序自己。
python中,使用sqlite3建立数据库的链接,当咱们指定的数据库文件不存在的时候
链接对象会自动建立数据库文件;若是数据库文件已经存在,则链接对象不会再建立
数据库文件,而是直接打开该数据库文件。
链接对象能够是硬盘上面的数据库文件,也能够是创建在内存中的,在内存中的数据库
执行完任何操做后,都不须要提交事务的(commit)
 
    建立在硬盘上面: conn = sqlite3.connect('c:\\test\\test.db')
    建立在内存上面: conn = sqlite3.connect('"memory:')
 
    下面咱们一硬盘上面建立数据库文件为例来具体说明:
        conn = sqlite3.connect('c:\\test\\test.db')
        其中conn对象是数据库连接对象,而对于数据库连接对象来讲,具备如下操做:
 
        commit()            --事务提交
        rollback()          --事务回滚
        close()             --关闭一个数据库连接
        cursor()            --建立一个游标
  
        cu = conn.cursor()
        这样咱们就建立了一个游标对象:cu
        sqlite3中,全部sql语句的执行都要在游标对象的参与下完成
        对于游标对象cu,具备如下具体操做:
  
        execute()           --执行一条sql语句
        executemany()       --执行多条sql语句
        close()             --游标关闭
        fetchone()          --从结果中取出一条记录
        fetchmany()         --从结果中取出多条记录
        fetchall()          --从结果中取出全部记录
        scroll()            --游标滚动
"""

# global var
# 数据库文件绝句路径
DB_FILE_PATH = ''

# 表名称
TABLE_NAME = ''

# 是否打印sql
SHOW_SQL = True


def get_conn(path):
    """获取到数据库的链接对象,参数为数据库文件的绝对路径
    若是传递的参数是存在,而且是文件,那么就返回硬盘上面改
    路径下的数据库文件的链接对象;不然,返回内存中的数据接
    链接对象"""
    conn = sqlite3.connect(path)
    if os.path.exists(path) and os.path.isfile(path):
        print('硬盘上面:[{}]'.format(path))
        return conn
    else:
        conn = None
        print('内存上面:[:memory:]')
        return sqlite3.connect(':memory:')


def get_cursor(conn):
    """该方法是获取数据库的游标对象,参数为数据库的链接对象
    若是数据库的链接对象不为None,则返回数据库链接对象所创
    建的游标对象;不然返回一个游标对象,该对象是内存中数据
    库链接对象所建立的游标对象"""
    if conn is not None:
        return conn.cursor()
    else:
        return get_conn('').cursor()


###############################################################
#            建立|删除表操做     START
###############################################################


def drop_table(conn, table):
    """若是表存在,则删除表,若是表中存在数据的时候,使用该
    方法的时候要慎用!"""
    if table is not None and table != '':
        sql = 'DROP TABLE IF EXISTS ' + table
        if SHOW_SQL:
            print('执行sql:[{}]'.format(sql))
        cu = get_cursor(conn)
        cu.execute(sql)
        conn.commit()
        print('删除数据库表[{}]成功!'.format(table))
        close_all(conn, cu)
    else:
        print('the [{}] is empty or equal None!'.format(sql))


def create_table(conn, sql):
    """建立数据库表:student"""
    if sql is not None and sql != '':
        cu = get_cursor(conn)
        if SHOW_SQL:
            print('执行sql:[{}]'.format(sql))
        cu.execute(sql)
        conn.commit()
        print('建立数据库表[student]成功!')
        close_all(conn, cu)
    else:
        print('the [{}] is empty or equal None!'.format(sql))


###############################################################
#            建立|删除表操做     END
###############################################################


def close_all(conn, cu):
    """关闭数据库游标对象和数据库链接对象"""
    try:
        if cu is not None:
            cu.close()
    finally:
        if conn is not None:
            conn.close()


###############################################################
#            数据库操做CRUD     START
###############################################################


def save(conn, sql, data):
    """插入数据"""
    if sql is not None and sql != '':
        if data is not None:
            cu = get_cursor(conn)
            for d in data:
                if SHOW_SQL:
                    print('执行sql:[{}],参数:[{}]'.format(sql, d))
                cu.execute(sql, d)
                conn.commit()
            close_all(conn, cu)
    else:
        print('the [{}] is empty or equal None!'.format(sql))


def fetchall(conn, sql):
    """查询全部数据"""
    if sql is not None and sql != '':
        cu = get_cursor(conn)
        if SHOW_SQL:
            print('执行sql:[{}]'.format(sql))
        cu.execute(sql)
        r = cu.fetchall()
        if len(r) > 0:
            for e in range(len(r)):
                print(r[e])
    else:
        print('the [{}] is empty or equal None!'.format(sql))


def fetchone(conn, sql, data):
    """查询一条数据"""
    if sql is not None and sql != '':
        if data is not None:
            # Do this instead
            d = (data,)
            cu = get_cursor(conn)
            if SHOW_SQL:
                print('执行sql:[{}],参数:[{}]'.format(sql, data))
            cu.execute(sql, d)
            r = cu.fetchall()
            if len(r) > 0:
                for e in range(len(r)):
                    print(r[e])
        else:
            print('the [{}] equal None!'.format(data))
    else:
        print('the [{}] is empty or equal None!'.format(sql))


def update(conn, sql, data):
    """更新数据"""
    if sql is not None and sql != '':
        if data is not None:
            cu = get_cursor(conn)
            for d in data:
                if SHOW_SQL:
                    print('执行sql:[{}],参数:[{}]'.format(sql, d))
                cu.execute(sql, d)
                conn.commit()
            close_all(conn, cu)
    else:
        print('the [{}] is empty or equal None!'.format(sql))


def delete(conn, sql, data):
    """删除数据"""
    if sql is not None and sql != '':
        if data is not None:
            cu = get_cursor(conn)
            for d in data:
                if SHOW_SQL:
                    print('执行sql:[{}],参数:[{}]'.format(sql, d))
                cu.execute(sql, d)
                conn.commit()
            close_all(conn, cu)
    else:
        print('the [{}] is empty or equal None!'.format(sql))


###############################################################
#            数据库操做CRUD     END
###############################################################


###############################################################
#            测试操做     START
###############################################################


def drop_table_test():
    """删除数据库表测试"""
    print('删除数据库表测试...')
    conn = get_conn(DB_FILE_PATH)
    drop_table(conn, TABLE_NAME)


def create_table_test():
    """建立数据库表测试"""
    print('建立数据库表测试...')
    create_table_sql = '''CREATE TABLE `student` (
                          `id` int(11) NOT NULL,
                          `name` varchar(20) NOT NULL,
                          `gender` varchar(4) DEFAULT NULL,
                          `age` int(11) DEFAULT NULL,
                          `address` varchar(200) DEFAULT NULL,
                          `phone` varchar(20) DEFAULT NULL,
                           PRIMARY KEY (`id`)
                        )'''
    conn = get_conn(DB_FILE_PATH)
    create_table(conn, create_table_sql)


def save_test():
    """保存数据测试..."""
    print('保存数据测试...')
    save_sql = '''INSERT INTO student values (?, ?, ?, ?, ?, ?)'''
    data = [(1, 'Hongten', '', 20, '广东省广州市', '13423****62'),
            (2, 'Tom', '', 22, '美国旧金山', '15423****63'),
            (3, 'Jake', '', 18, '广东省广州市', '18823****87'),
            (4, 'Cate', '', 21, '广东省广州市', '14323****32')]
    conn = get_conn(DB_FILE_PATH)
    save(conn, save_sql, data)


def fetchall_test():
    """查询全部数据..."""
    print('查询全部数据...')
    fetchall_sql = '''SELECT * FROM student'''
    conn = get_conn(DB_FILE_PATH)
    fetchall(conn, fetchall_sql)


def fetchone_test():
    """查询一条数据..."""
    print('查询一条数据...')
    fetchone_sql = 'SELECT * FROM student WHERE ID = ? '
    data = 1
    conn = get_conn(DB_FILE_PATH)
    fetchone(conn, fetchone_sql, data)


def update_test():
    """更新数据..."""
    print('更新数据...')
    update_sql = 'UPDATE student SET name = ? WHERE ID = ? '
    data = [('HongtenAA', 1),
            ('HongtenBB', 2),
            ('HongtenCC', 3),
            ('HongtenDD', 4)]
    conn = get_conn(DB_FILE_PATH)
    update(conn, update_sql, data)


def delete_test():
    """删除数据..."""
    print('删除数据...')
    delete_sql = 'DELETE FROM student WHERE NAME = ? AND ID = ? '
    data = [('HongtenAA', 1),
            ('HongtenCC', 3)]
    conn = get_conn(DB_FILE_PATH)
    delete(conn, delete_sql, data)

###############################################################
#            测试操做     END
###############################################################


def init():
    """初始化方法"""
    # 数据库文件绝句路径
    global DB_FILE_PATH
    DB_FILE_PATH = 'c:\\test\\test.db'
    # 数据库表名称
    global TABLE_NAME
    TABLE_NAME = 'student'
    # 是否打印sql
    global SHOW_SQL
    SHOW_SQL = True
    print('show_sql : {}'.format(SHOW_SQL))
    # 若是存在数据库表,则删除表
    drop_table_test()
    # 建立数据库表student
    create_table_test()
    # 向数据库表中插入数据
    save_test()


def main():
    init()
    fetchall_test()
    print('#' * 50)
    fetchone_test()
    print('#' * 50)
    update_test()
    fetchall_test()
    print('#' * 50)
    delete_test()
    fetchall_test()


if __name__ == '__main__':
    main()
相关文章
相关标签/搜索