7.4 Python用程序执行SQL脚本

4、用程序执行SQL脚本

SQL 脚本:script.sql(UTF-8)

insert into user_tb values(null, '白龙马', '456789', 23);

create table buddha_tb(
    _id integer primary key autoincrement,
    name text,
    pass text,
    description);
create table fairy_tb(
    _id integer primary key autoincrement,
    fairy_name text,
    fairy_pass text,
    fairy_title);

Python 执行SQL脚本

import sqlite3

conn = sqlite3.connect('test.db')
c = conn.cursor()

with open('script.sql', 'r', True, 'UTF-8') as f:
    sql = f.read()
    c.executescript(sql)       

conn.commit()

c.close()
conn.close()

在这里插入图片描述

同理

import sqlite3

conn = sqlite3.connect('test.db')
c = conn.cursor()
sql = '''
    insert into user_tb values(null, '其他', '4567891', 24);

    create table else_tb(
        _id integer primary key autoincrement,
        name text,
        pass text,
        description);
    '''
c.executescript(sql)

conn.commit()

c.close()
conn.close()

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值