Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Last night I was at a Boston Python Meetup that described various Python implementations. Part of the discussion included string concatenation.

Apparently for CPython there is less heap fragmentation if strings are concatenated starting with an empty string and then using join.

Is this an OK way to construct a string

sql_statement = "select count(*) " + \
    "from ept_inv e " + \
    "where e.ept_type =  " + str(in_row[cs.DeviceType]) + " " + \
    "and e.inv_id = " + str(in_row[cs.EndpointID]) + " ; "

or should I have set sql_statement to "" and then joined each piece? Thanks.

share|improve this question
4  
You shouldn't be putting parameters directly into SQL statements anyway. Always use placeholders and pass the values as the parameters argument to cursor.execute. – Daniel Roseman Aug 18 '11 at 12:29

5 Answers

up vote 0 down vote accepted

@robert has a very good point of using format() for a string. Another way of concatenating strings is:

s = ('select count(*)'
     'from ept_inv e'
     'where e.ept_type = {device_type}'
     'and e.inv_id = {endpoint_id};')

sql_statement = sql_statement_format.format(
                    device_type=in_row[cs.DeviceType],
                    endpoint_id=in_row[cs.EndpointId])

In fact, in Python, using parenthesis like this is preferred to truncating lines via \.

share|improve this answer

You could use a multi-line string literal with .format:

sql_statement_format = """
    select count(*)
    from ept_inv e
    where e.ept_type = {device_type} 
    and e.inv_id = {endpoint_id};
"""
sql_statement = sql_statement_format.format(
    device_type=in_row[cs.DeviceType],
    endpoint_id=in_row[cs.EndpointId])

You need to properly sanitize your SQL queries, or bad things can happen. Is there any reason you're not using the Python database API?

share|improve this answer
I found mysqldb and started using that. – octopusgrabbus Aug 18 '11 at 12:29

Please take a look at the Python performance tips for advice on string concatenation.

share|improve this answer

This should be faster and easier to read imo. This is a fairly small amount of strings to concatenate, so I wouldn't concentrate to much on it :).

" ".join([
    "select count(*)",
    "from ept_inv e",
    "where e.ept_type =",
    str(in_row[cs.DeviceType]),
    "and e.inv_id =",
    str(in_row[cs.EndpointID]),
    ";"
])
share|improve this answer
1  
No point of concatenating strings like that in this case. – BasicWolf Aug 18 '11 at 12:32

I suspect this would be premature optimization. Just do it in the most readable/pythonic way and only optimize it if profiling with real world use cases reveals your string concatenation to be a hot spot.

Also, heed the comment. :-)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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