2020
09-24
09-24
Python MySQLdb 执行sql语句时的参数传递方式
使用MySQLdb连接数据库执行sql语句时,有以下几种传递参数的方法。1.不传递参数conn=MySQLdb.connect(user="root",passwd="123456",host="192.168.101.23",db="cmdb")orange_id=98sql="select*fromorangewhereid=%s"%orange_idcursor=conn.cursor(sql)cursor.execute()2.传递参数color="yellow"sql="select*fromorangewherecolor=%s"cursor.execute(sql,color)注意此处的占位符是%s,无论是字符串、数...
继续阅读 >