sql >> Database >  >> RDS >> Mysql

Python's mysqldb obscure documentatie

Ik heb dit geleerd door te kijken in /usr/lib/pymodules/python2.6/MySQLdb/connections.py om te zien hoe het connection.escape noemde . Een beetje rondsnuffelen leidt totMySQLdb.converters.conversions . Hier is een fragment:

{0: <class 'decimal.Decimal'>,
 1: <type 'int'>,
...
 <type 'dict'>: <built-in function escape_dict>,
 <type 'NoneType'>: <function None2NULL at 0xae9717c>,
 <type 'set'>: <function Set2Str at 0xae9709c>,
 <type 'str'>: <function Thing2Literal at 0xae971b4>,
 <type 'tuple'>: <built-in function escape_sequence>,
 <type 'object'>: <function Instance2Str at 0xae971ec>,
 <type 'unicode'>: <function Unicode2Str at 0xae9710c>,
 <type 'array.array'>: <function array2Str at 0xae9725c>,
 <type 'bool'>: <function Bool2Str at 0xae97294>}

Je kunt het als volgt gebruiken:

import MySQLdb
import MySQLdb.converters
import datetime

now=datetime.datetime.now()
connection=MySQLdb.connect(
    host=HOST,user=USER,passwd=PASS,db=MYDB)
print(connection.escape((1,2,now),MySQLdb.converters.conversions))
# ('1', '2', "'2010-07-24 19:33:59'")

ps. Met betrekking tot Bobby Tables:voor normaal gebruik van MySQLdb hoeft u argumenten niet handmatig te escapen. Gebruik gewoon geparametriseerde argumenten bij het aanroepen van cursor.execute , en MySQLdb citeert automatisch de argumenten voor u.

Bijvoorbeeld:

sql='insert into students (name,grade,date) values (%s, %s, %s)'
args=("Robert'); DROP TABLE Students; --",60,now)   # no manual quotation necessary
cursor=connection.cursor()
cursor.execute(sql,args)


  1. Hoe u invoegverklaringen uit Excel-gegevens kunt genereren en in SQL Server-tabel kunt laden - SQL Server / TSQL-zelfstudie, deel 103

  2. mysql begrijpen leg uit

  3. LEFT() vs SET TEXTSIZE in SQL Server:wat is het verschil?

  4. SQLite Kolom hernoemen