I have the following query that I'm executing using a Python script (by using the MySQLdb module).

conn=MySQLdb.connect (host = "localhost", user = "root",passwd = "<password>",db = "test")
cursor = conn.cursor ()
preamble='set @radius=%s; set @o_lat=%s; set @o_lon=%s; '%(radius,latitude,longitude)
query='SELECT *, (6371*1000 * acos(cos(radians(@o_lat)) * cos(radians(lat)) * cos(radians(lon) - radians(@o_lon)) + sin(radians(@o_lat)) * sin(radians(lat))) as distance FROM poi_table HAVING distance < @radius ORDER BY distance ASC LIMIT 0, 50)'
complete_query=preamble+query
results=cursor.execute (complete_query)
print results

The values of radius, latitude, and longitude are not important, but they are being defined when the script executes. What bothers me is that the snippet of code above returns no results; essentially meaning that the way that the query is being executed is wonky. I executed the SQL query (including the set variables with actual values, and it returned the correct number of results).

If I modify the query to just be a simple SELECT FROM query (SELECT * FROM poi_table) it returns results. What is going on here?

EDIT: Encapsulated Haversine formula calculation within parenthesis

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

AFAIK you can't run multiple statements using execute().
You can, however, let MySQLdb handle the value substitutions.

Note that there are two arguments being passed to execute().
Also, just running execute() doesn't actually return any results.
You need to use fetchone() or fetchmany() or fetchall().

cursor.execute('''
    SELECT *, 
        6371*1000 * acos(cos(radians(%s)) * 
        cos(radians(lat)) * cos(radians(lon) - radians(%s)) + 
        sin(radians(%s)) * sin(radians(lat))) as distance 
    FROM 
        poi_table 
    WHERE distance < %s
    ORDER BY distance ASC 
    LIMIT 0, 50''', (latitude, longitude, latitude, radius,))
results = cursor.fetchall()
print results
link|improve this answer
I'm so angry with myself for making such a silly mistake. Thanks for the help. – GobiasKoffi Jun 3 '10 at 3:38
feedback

Are you sure that the HAVING clause shouldn't be WHERE distance < @radius instead?

link|improve this answer
I made the change, and it didn't appear to help remedy my situation. Do you have any more suggestions? – GobiasKoffi Jun 3 '10 at 3:27
+1 for attention to detail. – bernie Jun 3 '10 at 3:38
aha, and that put you over the 10k; congrats! – bernie Jun 3 '10 at 4:06
feedback

Your Answer

 
or
required, but never shown

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