Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | OR nodes are somewhat working | Aaron Patterson | 2010-08-16 | 3 | -0/+43 |
| | |||||
* | sql visitor can deal with TrueClass | Aaron Patterson | 2010-08-16 | 1 | -0/+4 |
| | |||||
* | table responds to take | Aaron Patterson | 2010-08-16 | 1 | -0/+8 |
| | |||||
* | IN seems to work | Aaron Patterson | 2010-08-16 | 4 | -7/+28 |
| | |||||
* | quoting strings from equality statements, adding to_dot | Aaron Patterson | 2010-08-16 | 1 | -0/+9 |
| | |||||
* | update is working on the select manager | Aaron Patterson | 2010-08-14 | 2 | -0/+56 |
| | |||||
* | update manager is working | Aaron Patterson | 2010-08-14 | 1 | -0/+18 |
| | |||||
* | basic updates are working | Aaron Patterson | 2010-08-14 | 1 | -0/+43 |
| | |||||
* | inserts have the correct syntax | Aaron Patterson | 2010-08-13 | 2 | -4/+41 |
| | |||||
* | insert manager implements "insert" | Aaron Patterson | 2010-08-13 | 2 | -0/+26 |
| | |||||
* | inserts are starting to take shape | Aaron Patterson | 2010-08-13 | 1 | -2/+41 |
| | |||||
* | insert manager is starting to take shape | Aaron Patterson | 2010-08-13 | 3 | -23/+52 |
| | |||||
* | table responds to "project" | Aaron Patterson | 2010-08-13 | 1 | -0/+10 |
| | |||||
* | Table.new can take a hash for the second param | Aaron Patterson | 2010-08-13 | 1 | -0/+12 |
| | |||||
* | project works with strings | Aaron Patterson | 2010-08-13 | 1 | -0/+20 |
| | |||||
* | limits are added | Aaron Patterson | 2010-08-12 | 2 | -0/+36 |
| | |||||
* | full sql statement generation | Aaron Patterson | 2010-08-12 | 1 | -0/+44 |
| | |||||
* | to_sql visitor started | Aaron Patterson | 2010-08-12 | 2 | -0/+18 |
| | |||||
* | adding first node | Aaron Patterson | 2010-08-12 | 1 | -0/+17 |
| | |||||
* | tables can fetch attributes | Aaron Patterson | 2010-08-12 | 2 | -1/+52 |
| | |||||
* | starting a spec for the table | Aaron Patterson | 2010-08-12 | 1 | -18/+19 |
| | |||||
* | stripping the spec helper | Aaron Patterson | 2010-08-12 | 1 | -0/+38 |
| | |||||
* | We're obviously writing specs for arel. No need for a sub directory. | Carl Lerche | 2010-03-12 | 57 | -3966/+0 |
| | |||||
* | Add a bunch of specs for attribute type casting. | Carl Lerche | 2010-03-12 | 1 | -50/+8 |
| | |||||
* | Attributes should be typed | Carl Lerche | 2010-03-12 | 10 | -26/+33 |
| | |||||
* | Start writing integration specs for arel. | Carl Lerche | 2010-03-11 | 1 | -0/+120 |
| | |||||
* | Release v0.3.0 | Emilio Tagua | 2010-03-10 | 1 | -1/+1 |
| | |||||
* | Arel doesn't has to know if a table or column exists. | Emilio Tagua | 2010-03-10 | 3 | -4/+21 |
| | |||||
* | Remove " AS " keyword from table aliasing. | Emilio Tagua | 2010-03-01 | 4 | -36/+36 |
| | |||||
* | changes for Oracle support - OracleCompiler and corresponding tests with ↵ | Raimonds Simanovskis | 2010-03-01 | 26 | -63/+638 |
| | | | | Oracle syntax | ||||
* | Added support for RETURNING primary key when available, only for | Emilio Tagua | 2010-02-18 | 1 | -1/+12 |
| | | | | PostgreSQL. | ||||
* | Fix test which depends on the RUBY_VERSION when using sqlite3 adapter. | Emilio Tagua | 2010-02-17 | 1 | -1/+5 |
| | |||||
* | Quoting every part of a Range. Calling .to_s is not enough for Range with ↵ | Eugene Pimenov | 2010-02-01 | 2 | -2/+26 |
| | | | | two Time objects. | ||||
* | Fix the generated SQL when In predicate is supplied an empty Array | Pratik Naik | 2010-01-30 | 1 | -0/+19 |
| | |||||
* | Make sure string join relations can be chained | Pratik Naik | 2010-01-13 | 1 | -1/+30 |
| | |||||
* | Make sure not to use alias if it's same as the table name | Pratik Naik | 2010-01-12 | 1 | -0/+19 |
| | |||||
* | Add support for table aliasing | Pratik Naik | 2010-01-01 | 2 | -2/+74 |
| | | | | | | | Example : users = Table(:users, :as => :accounts) users.to_sql => SELECT `accounts`.`id`, `accounts`.`name` FROM `users` AS `accounts` | ||||
* | Added having to use in combination with group to filter records. | Emilio Tagua | 2009-12-28 | 1 | -0/+36 |
| | |||||
* | Don't try to lock reads when using any SQLite adapter, it's redundant | Emilio Tagua | 2009-12-28 | 1 | -2/+16 |
| | | | | and may generate an invalid query. | ||||
* | Added lock to Arel, allowing a locking read if required. | Emilio Tagua | 2009-12-27 | 1 | -0/+47 |
| | |||||
* | Added "from" method, allowing to specify custom from clauses. | Emilio Tagua | 2009-12-27 | 1 | -0/+50 |
| | |||||
* | Ruby 1.9: Improve the way we spec this | Bryan Helmkamp | 2009-11-09 | 1 | -2/+2 |
| | |||||
* | Switch from rr to RSpec mocks. rr has issues on 1.9.2pre | Bryan Helmkamp | 2009-11-09 | 3 | -10/+10 |
| | |||||
* | Ruby 1.9: the constants must be qualified | Bryan Helmkamp | 2009-11-09 | 6 | -10/+10 |
| | |||||
* | Create Predicates module to match directory structure | Bryan Helmkamp | 2009-09-30 | 9 | -260/+274 |
| | |||||
* | Fix almost all Ruby warnings during spec suite | Bryan Helmkamp | 2009-09-20 | 6 | -15/+14 |
| | |||||
* | Whitespace | Bryan Helmkamp | 2009-09-20 | 2 | -3/+3 |
| | |||||
* | Merge remote branch 'miloops/master' into miloops | Bryan Helmkamp | 2009-09-20 | 53 | -69/+86 |
|\ | | | | | | | | | | | | | Conflicts: spec/connections/mysql_connection.rb spec/connections/postgresql_connection.rb spec/connections/sqlite3_connection.rb | ||||
| * | Use load path rather than relative path for spec_helper requires. Also fixes ↵ | Jeremy Kemper | 2009-09-14 | 53 | -53/+53 |
| | | | | | | | | specs on Ruby 1.9 since . is no longer in the load path. | ||||
| * | Allow SQL strings to insert query. Insert should better return engine's result. | Emilio Tagua | 2009-07-01 | 2 | -10/+9 |
| | |