diff options
author | James Moger <james.moger@gmail.com> | 2011-12-13 15:24:43 -0500 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2011-12-13 15:24:43 -0500 |
commit | 8e7ccd33d586bdea3fea1f606874deeaf7b9884f (patch) | |
tree | be03538a50ef79079594603bf246f5519aed6857 /docs/04_examples.mkd | |
parent | 5c18f339dba21dd10eebc728f7d6e85bba940c7c (diff) | |
download | iciql-8e7ccd33d586bdea3fea1f606874deeaf7b9884f.tar.gz iciql-8e7ccd33d586bdea3fea1f606874deeaf7b9884f.zip |
Corrected performance regression. Tweaked dynamic query results.v0.7.5
Diffstat (limited to 'docs/04_examples.mkd')
-rw-r--r-- | docs/04_examples.mkd | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/04_examples.mkd b/docs/04_examples.mkd index a1273be..eaaa579 100644 --- a/docs/04_examples.mkd +++ b/docs/04_examples.mkd @@ -11,7 +11,6 @@ List<Customer> waCustomers = db.from(c). where(c.region).is("WA").select() public static class ProductPrice {
public String productName;
public String category;
- @IQColumn(name = "unitPrice")
public Double price;
}
|