在mysql5中,可以设置safe mode,比如在一个更新语句中UPDATE table_name SET bDeleted=0;执行时会错误,报:You are using safe update mode and you tried to update a table without a WHERE clause that uses a KEY column.” 原因是在safe mode下,要强制安全点,update只能跟where了,要取消这个限制,可以: SET SQL_SA…
1.在修改数据库的时候,每写完一条SQL语句都要加上一个分号,这样每句之间是有依赖关系的,上面执行不成功不会执行下面的语句. 2.在更新数据库中数据时可以使用join. 例如: update res set Code = parent.Code + '.' + CONVERT(nvarchar(64),parent.ID) + '.' from resources as res inner join resources as parent on res.ParentID = parent.ID…
当Appium中遇到alert,可以使用switch_to_alert(),以下是微信登录切换登录方式的代码示例: #coding=utf-8 from appium import webdriver from time import sleep import unittest class WxTestsCase(unittest.TestCase): def setUp(self): desired_cups={} desired_cups['platformName']='Android'…