spadefoot / kohana-orm-leap

An ORM module for the Kohana PHP framework that is designed to work with all major databases.
http://spadefoot.github.io/kohana-orm-leap/
100 stars 25 forks source link

Update classes/Base/DB/MySQL/Select/Builder.php #89

Closed ralfonso-directnic closed 11 years ago

ralfonso-directnic commented 11 years ago

There was an error in Builder.php where using "using" in a query output incorrect syntax

IE

SELECT * FROM foo INNER JOIN bar USING foo_id

The statement method was missing parenthesis, fixed it now outputs:

SELECT * FROM foo INNER JOIN bar USING (foo_id)