【问题标题】:Entering data into SQLite将数据输入 SQLite
【发布时间】:2013-03-13 09:36:00
【问题描述】:

我正在处理一个项目并启动了一个小项目来通过串行获取一些数据。数据来自串行,但没有任何内容添加到数据库中。创建了表,但未推送实际数据。那里出了点问题。

这是我的代码:

#!/usr/bin/env python
import serial
import time

import sqlite3
import os
from datetime import datetime

conn = sqlite3.connect("elements78.db") # or use :memory: to put it in RAM

cursor = conn.cursor()
sql_file = os.path.join(os.path.dirname(__file__), 'elements78.db')
needs_creation = not os.path.exists(sql_file) 
db_connection = sqlite3.connect(sql_file)
db_connection.row_factory = sqlite3.Row

# create a table
if needs_creation:
    print 'Creating initial database...'
    cursor = db_connection.cursor()

    db_connection.commit()
    print 'Database created.'

cursor.executescript("""
                    DROP TABLE IF EXISTS elements;
                    CREATE TABLE elements (id INTEGER PRIMARY KEY AUTOINCREMENT, Name, date CURDATE )
                    """)

#enter your device file
arddev = '/dev/tty.usbmodem621'
baud = 9600

#setup - if a Serial object can't be created, a SerialException will be raised.
while True:
    try:
        ser = serial.Serial(arddev, baud)

        #break out of while loop when connection is made
        break
    except serial.SerialException:
        print 'waiting for device ' + arddev + ' to be available'
        time.sleep(3)

#read lines from serial device
count = 0
while count < 5:

    element = ser.readline().strip('\n')
    count = count + 1
    datestamp = datetime.now()
    print 'received the element: ' + element 
    print datestamp

    cursor.execute('insert into elements(Name) values("%s")'%(element))


allentries = []
cursor.execute('SELECT * FROM elements')

allentries=cursor.fetchall()

print allentries

【问题讨论】:

  • 或许能给你一些建议zetcode.com/db/sqlitepythontutorial
  • 真的真的建议你使用sqlalchemy
  • 来自 Jakub M 的好建议,sqlalchemy 在这种情况下会让你的生活更轻松,它也是一个 ORM!

标签: python mysql database sqlite serial-port


【解决方案1】:

尝试添加

db_connection.commit()

在您的 INSERT 语句之后。

【讨论】:

    猜你喜欢
    • 2021-07-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-06-02
    • 1970-01-01
    • 1970-01-01
    • 2018-11-24
    • 1970-01-01
    相关资源
    最近更新 更多