所以我想用日期和一些二进制数据创建一个数据库。我想做的是每5分钟,获取传感器的数据,并将其与准确时间一起放入数据库。
这是我的脚本
import serial # import the serial library
from time import sleep # import the sleep command from the time library
import sqlite3
import datetime
ser = serial.Serial("/dev/tty.usbserial-A400DUTI", 4800) # load into a variable 'ser' the information about the usb you are listening. /dev/tty.usbserial.... is the port after plugging in the hygrometer
conn=sqlite3.connect('porjectait.db') #connection with the data base
databa=conn.cursor()
databa.execute('''CREATE TABLE porjectait (date string, temphydro bin)''')
test_file=open("temphydro",'w+b')# creation and/or writing in my binary file
while 1 :
i = 0
date=(datetime.datetime.now()) #My way to get the date
while i < 300 : #300 because it will take at least 2 round of datum
test_file.write(ser.read(size=1)) #write into my bynary file
i=i+1
databa.execute("INSERT INTO porjectait VALUES"('date','test_file')) #insert the datum in my database
conn.commit()
sleep(300) #wait 5 minutes
我的第一个问题,但我找到了解决它的方法,是我得到了一个:
database.execute(''CREATE TABLE stocks(日期字符串,temphydro-bin)'''')sqlite3.OperationalError:表库存已经存在
为了避免这种情况,我只是在SQL的创建行前面加了一个#。但我想找到一种方法,只检查数据库是否存在,如果它不存在,就创建它,否则就有更多的数据。
然后我的第二个也是主要的问题是,当我执行脚本时,我得到:
database.execute("插入股票价值"('date','test_file'))TypeError:"str"对象不可调用
这是,如果你需要什么是在我的二进制文件:
@
I01010100B00725030178
V0109EB01
I02020100B00725030148
V0215FBD9
I035300B5
V030225B8
I04550065
V040294AE
$
@
I01010100B00725030178
V0109EB01
I02020100B00725030148
V02160264
I035300B5
V03022704
I04550065
V040295F0
$
@
谢谢!再见
您的INSERT字符串错误。结束时的双引号应该在末尾,如"INSERT INTO stocks VALUES('date','test_file')"