How the different database drivers resist sql injection
--
	MySQLdb uses the mysql library's string escape to insert
	text into the sql

	pymssql uses the sql/params method

	sqlite uses sql/params method

	psycopg2 uses ???

