各位大大們好,小弟目前在自學 Python ,近期想使用 Python 取出每天爬到並匯入到
SQLite 的資料筆數
資料存入的格式如下圖:
https://i.imgur.com/WJap8QB.png
程式碼如下:
import sqlite3
conn = sqlite3.connect('sqlite01.db')
c = conn.cursor()
print ("Opened database successfully")
time = " 2018-09-30T%"
cur = c.execute("select count(*) from my_data where update_time like
'?'",time)
data = cur.fetchone()
print(data)
conn.commit()
print("Records created successfully")
conn.close()
但都會出現此行的錯誤訊息