Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | projections now support string passthrough | Nick Kallen | 2008-03-16 | 1 | -1/+5 |
| | | | | - there is a weird inconsistency in where bind is called on values; this needs to be resolved | ||||
* | allowing string passthrough for order clauses | Nick Kallen | 2008-03-16 | 1 | -1/+10 |
| | |||||
* | added support for `attribute IN ...` and `attribute BETWEEN ...` | Nick Kallen | 2008-03-16 | 1 | -5/+9 |
| | | | | | - IN and BETWEEN are chosen depending on the type of the second operand - ranges (1..2), arrays ([1,2,3]), and relations ("SELECT * ...") are all supported | ||||
* | properly quoting array values | Nick Kallen | 2008-03-16 | 1 | -3/+9 |
| | |||||
* | annotated abstraction | Nick Kallen | 2008-03-13 | 1 | -2/+3 |
| | | | | | - in compound - created superclass for the create/insert/update write operations, marked :call as abstract | ||||
* | added abstract declaration | Nick Kallen | 2008-03-13 | 1 | -0/+2 |
| | |||||
* | renamed sql formatting strategies to correspond with sql grammar rule names ↵ | Nick Kallen | 2008-03-13 | 1 | -14/+13 |
| | | | | in the mysql bnf | ||||
* | - renamed scalar to value | Nick Kallen | 2008-03-12 | 1 | -7/+7 |
| | | | | - added better test coverage and documentation of binary spec #to_sql | ||||
* | renamed strategy method to format | Nick Kallen | 2008-03-11 | 1 | -7/+7 |
| | | | | | | - strategy (the method on scalar and attribute) is a complex double-dispatching scheme to format (to_sql) a scalar in the light of the particular attribute; that is, it casts strings to integers if the column is int, etc. | ||||
* | scalars are now lifted; the heavy lifting is done by the operations on ↵ | Nick Kallen | 2008-03-02 | 1 | -1/+1 |
| | | | | relation (select, join, etc.) | ||||
* | introduced engine dependency for sql strategies | Nick Kallen | 2008-03-02 | 1 | -7/+8 |
| | | | | - hacked in default engine for scalars -- BAD | ||||
* | new concept of session boundaries | Nick Kallen | 2008-03-02 | 1 | -1/+2 |
| | |||||
* | quoting issues | Nick Kallen | 2008-02-24 | 1 | -5/+18 |
| | |||||
* | Introduced concept of session. It does not yet support multiple databases, ↵ | Nick Kallen | 2008-02-23 | 1 | -1/+1 |
| | | | | nor transactions, but it's a start! | ||||
* | adding support for scalar selects | Nick Kallen | 2008-02-16 | 1 | -2/+2 |
| | |||||
* | completed initial functionality for joining with aggregation (the meaning of ↵ | Nick Kallen | 2008-01-21 | 1 | -4/+10 |
| | | | | which is joining on a subselect/derived table); the big change is the introduction of a #projections protected method; this is a private version of #attributes which preserves implementation information (e.g., the name of the function called) | ||||
* | experimenting with strategy pattern rather than conditional; not as terse, ↵ | Nick Kallen | 2008-01-13 | 1 | -0/+51 |
nor transparent, but i still feel it's better |