我正在处理一个项目并启动了一个小项目来获取Serial上的一些数据。数据来自Serial,但没有任何内容添加到数据库中。表已创建,但实际数据不会被推送。那里出了点问题。
这是我的代码:
#!/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
答案 0 :(得分:5)
尝试添加
db_connection.commit()
在INSERT语句之后。