fixed job ID quote error

This commit is contained in:
Navan Chauhan 2020-07-07 11:16:36 +05:30
parent 8c1eee1605
commit 0f0791037f
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import mysql.connector as con
mycon = con.connect(host="navanspi.duckdns.org",user="curieweb",password="curie-web-russian-54",port=3306,database="curie")
mycursor = mycon.cursor()
sql_select_Query = 'select * from curieweb where id="2idcjxfsxla03oux" LIMIT 1'
sql_select_Query = 'select * from curieweb where id="18u3r0chcf6nr6mj" LIMIT 1'
mycursor.execute(sql_select_Query)
records = mycursor.fetchall()