diff options
Diffstat (limited to 'docs/02_usage.mkd')
-rw-r--r-- | docs/02_usage.mkd | 2 |
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<Product> 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%
|