vote up 0 vote down star

I need to generate a list of insert statements (for postgresql) from html files, is there a library available for python to help me properly escape and quote the names/values? in PHP i use PDO to do the escaping and quoting, is there any equivalent library for python?

Edit: I need to generate a file with sql statements for execution later

flag

74% accept rate
5  
Generating "plain SQL statements" with data in-line is inherently prone to security failures for reasons as abstract as varying interpretations of Unicode characters between the database engine and the library doing the generation. It is NOT something you should try to do. The output, therefore, should be phrased -- and passed to your database API -- as a query string / data list combo. SQLAlchemy will automate this. – Charles Duffy Oct 14 at 4:24

7 Answers

vote up 5 vote down

SQLAlchemy provides a robust expression language for generating SQL from Python.

Like every other well-designed abstraction layer, however, the queries it generates insert data through bind variables rather than through attempting to mix the query language and the data being inserted into a single string. This approach avoids massive security vulnerabilities and is otherwise The Right Thing.

link|flag
vote up 2 vote down

try sqlalchemy

link|flag
vote up 1 vote down

For robustness, I recommend using prepared statements to send user-entered values, no matter what language you use. :-)

link|flag
is there already a library to do so? i want plain sql statements as output though :) – Jeffrey04 Oct 14 at 2:52
vote up 1 vote down

Quoting parameters manually in general is a bad idea. What if there is a mistake in escaping rules? What if escape doesn't match used version of DB? What if you just forget to escape some parameter or erroneously assumed it can't contain data requiring escaping? That all may cause SQL injection vulnerability. Also, DB can have some restrictions on SQL statement length while you need to pass large data chunk for LOB column. That's why Python DB API and most databases (Python DB API module will transparently escape parameters, if database doesn't support this, as early MySQLdb did) allow passing parameters separated from statement:

.execute(operation[,parameters])

link|flag
I understand, but i just want a list of sql statements (not executing them) – Jeffrey04 Oct 14 at 4:30
vote up 0 vote down

The python db api 2.0 has a ".execute" method for connection objects. You can specify parameters (use a comma NOT a % sign to separate params from the query string) with this function.

link|flag
vote up 0 vote down

Another option for an ORM is storm. It's good if you want something simple. See the tutorial here.

link|flag
sorry, i am not looking for an ORM, I just need a library that helps me to generate a list of insert statements (without executing them) :/ – Jeffrey04 Oct 14 at 9:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.