summaryrefslogtreecommitdiffstats
path: root/docs/02_usage.mkd
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-08-08 11:12:50 -0400
committerJames Moger <james.moger@gmail.com>2011-08-08 11:12:50 -0400
commit35973f16d6e408fff3e9eeeda4dac4ab3f7cb048 (patch)
treebd266925e65837ecbfe18ac3b734a05d6bf49bdc /docs/02_usage.mkd
parentf7485f5f18e49cef057782c0c3137e64a5af542c (diff)
downloadiciql-35973f16d6e408fff3e9eeeda4dac4ab3f7cb048.tar.gz
iciql-35973f16d6e408fff3e9eeeda4dac4ab3f7cb048.zip
Documentation. EnumType default is NAME.
Diffstat (limited to 'docs/02_usage.mkd')
-rw-r--r--docs/02_usage.mkd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/02_usage.mkd b/docs/02_usage.mkd
index d872ee0..4cca129 100644
--- a/docs/02_usage.mkd
+++ b/docs/02_usage.mkd
@@ -48,7 +48,7 @@ List&lt;Product&gt; restock = db.from(p).where("unitsInStock=? and productName l
#### Db.executeQuery Approaches
There may be times when the hybrid approach is still too restrictive and you'd prefer to write straight SQL. You can do that too and use iciql to build objects from your ResultSet, but be careful:
-1. Make sure to _select *_ in your query otherwise db.bindResultSet() will throw a RuntimeException
+1. Make sure to _select *_ in your query otherwise db.buildObjects() will throw a RuntimeException
2. There is no model class type checking nor field type checking.
%BEGINCODE%