Python 使用SQLite数据库

作者: Ritchie_Li | 来源:发表于2022-07-25 21:47 被阅读0次

    1. Sqlite3模块 - 不需要单独的服务器

    sqlite3 模块由 Gerhard Häring 编写。 要使用该模块,您必须首先创建一个 Connection 对象连接数据库。 这里数据将存储在 PrintAndersonLaser.db 文件中:

    import sqlite3

    conn = sqlite3.connect('PrintAndLaser.db')

    创建数据表,增加数据到数据表:

    c.execute('''CREATE TABLE Stocks

        (date text, trans text, qty real, price real)''')

    c.execute("INSERT INTO Stocks VALUES('2022-07-25', 'Buy', 100, 88.3)")

    conn.commit()

    conn.close()

    2. 查询数据表中的数据

    import sqlite3

    conn = sqlite3.connect('PrintAndLaser.db')

    c = conn.cursor()

    c.execute("SELECT * FROM Stocks ")

    for rin c:

    print(r)

    conn.close()

    输出:

    ('2022-07-25', 'Buy', 100.0, 88.3)

    读取一条数据:c.fetchone()

    读取表中的所有数据:all = c.fetchone()

    相关文章

      网友评论

        本文标题:Python 使用SQLite数据库

        本文链接:https://www.haomeiwen.com/subject/dornirtx.html