Note that there are some explanatory texts on larger screens.

plurals
  1. POMySQL 1064 error, works in command line and phpMyAdmin; not in app
    text
    copied!<p>Here is my query:</p> <pre><code>select * from (select *, 3956 * 2 * ASIN(SQRT(POWER(SIN(RADIANS(45.5200077 - lat)/ 2), 2) + COS(RADIANS(45.5200077)) * COS(RADIANS(lat)) * POWER(SIN(RADIANS(-122.6942014 - lng)/2),2))) AS distance from stops order by distance, route asc) as p group by route, dir order by distance asc limit 10 </code></pre> <p>This works fine at the command line and in PHPMyAdmin. I'm using <a href="http://code.nytimes.com/projects/dbslayer/wiki" rel="nofollow noreferrer">Dbslayer</a> to connect to MySQL via my JavaScript backend, and the request is returning a 1064 error.</p> <p>Here is the encoded DBSlayer request string:</p> <blockquote> <p><a href="http://localhost:9090/db" rel="nofollow noreferrer">http://localhost:9090/db</a>?{%22SQL%22:%22select%20*%20from%20%28select%20*,%203956%20*%202%20*%20ASIN%28SQRT%28POWER%28SIN%28RADIANS%2845.5200077%20-%20lat%29/%202%29,%202%29%20+%20COS%28RADIANS%2845.5200077%29%29%20*%20COS%28RADIANS%28lat%29%29%20*%20POWER%28SIN%28RADIANS%28-122.6942014%20-%20lng%29/2%29,2%29%29%29%20AS%20distance%20from%20%60stops%60%20order%20by%20%60distance%60,%20%60route%60%20asc%29%20as%20p%20group%20by%20%60route%60,%20%60dir%60%20order%20by%20%60distance%60%20asc%20limit%2010%22}</p> </blockquote> <p>And the response:</p> <blockquote> <p>{"MYSQL_ERRNO" : 1064 , "MYSQL_ERROR" : "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(RADIANS(45.5200077)) * COS(RADIANS(lat)) * POWER(SIN(RADIANS(-122.6942014 - lng' at line 1" , "SERVER" : "trimet"}</p> </blockquote> <p>Thanks!</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload