0
def connect(date1,volumn1,price1,rise1,time1):
#print type(date1),volumn1,price1,rise1,time1
db=MySQLdb.connect("localhost","root","998426","stock")
cursor=db.cursor()
sql=" insert into tab1(date,volumn,price,rise,time) values(%s,%s,%f,%s,%s)"%(date1,volumn1,price1,rise1,time1)
#sql = "insert into tab1(date,volumn,price,rise,time) values('2017/9/13 星期二','200',17.5,'2.14%','15:30')" //this can work!
try:
cursor.execute(sql)
db.commit()
except:
db.rollback()
db.close()
日付1、volumn1、rise1、time1は文字列です。私のデータベースに在庫データを挿入できません。
price1はfloatです。
volumnは、ボリュームと列の間のクロスに似ていますか? – Strawberry