MySQL在更新单元格后返回null值

时间:2013-01-08 06:09:07

标签: python mysql sql json

我有一点MySQL问题。我写了一个python脚本,记录点击并处理重定向。我有一个表,对于给定的IP地址,有各种列,包括一个包含id列表的列。如果用户从未单击过图像(该行仍然存在),则该单元格包含一个空列表。

请注意,在表中更新之前,使用json将列表序列化为字符串。我知道这并不总是一个好的做法,但对于我们的应用程序来说它似乎有效。

因此,在用户单击图像之前,可以查询sql表:

    sql = """select clicked_id from `""" + DBTABLE2 + """`
            where ip='%s'"""%(ip_address,)     
    cur.execute(sql)
    row = cur.fetchone()
    if row:
        ci = row['clicked_id']
        print ci, type(ci)

        clicked_id=json.loads(ci)
        print clicked_id, type(clicked_id)

print语句返回:

    []  <type 'str'>
    []  <type 'list'>

但是,在运行以下python脚本(运行成功)之后,输出完全不同。这是python代码:

#connecting to the mysql table
con = mysql.connect(host=DBHOST, user=DBUSERNAME, passwd=DBPASSWORD,
                db=DBDATABASE, cursorclass=DictCursor)
cur = con.cursor()

#save the click through
sql = """select clicked_id from `""" + DBTABLE2 + """`
                where ip='%s'"""%(ip_address,)     
cur.execute(sql)
row = cur.fetchone()
if row:
    clicked_id = row['clicked_id']

    #decoding the data
    clicked_id = json.loads(clicked_id)

else:
    clicked_id=[]

#Updating the list
clicked_id = clicked_id.append(product_id)

#Encoding the data
clicked_id = json.dumps(clicked_id)

#Updating the mysql database
cur.execute("""update `"""+DBTABLE2+"""` set clicked_id='%s' where ip='%s'"""%(clicked_id,ip_address,))

#Getting the dst url
sql = """select url from `""" + DBTABLE + """`
                where id='%s'"""%(product_id,)
cur.execute(sql)
row = cur.fetchone()

if row:
    url = row['url']

再次检查表格,打印语句返回:

 null  <type 'str'>
 None  <type 'NoneType'>

我不知道为什么这样做......我非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

python脚本存在一个问题:

    #Updating the list
    clicked_id = clicked_id.append(product_id)

这是不正确的,并且clicked_id为NoneType,加载到MySQL时会被解释为空值。

只需将代码更新为:

    clicked_id.append(product_id)