I am an Abator & IBatis newbie.  I'm trying to figure out how to invoke my
query given the criteria I have established.  In other words, what goes in
the area labeled  "Fill in the blank" below?



                Reader reader =
Resources.getResourceAsReader("com/rbm/db/SqlMapConfig.xml");
                SqlMapClient sqlMap =
SqlMapClientBuilder.buildSqlMapClient(reader);
                try {
                        sqlMap.startTransaction();
                        PromotionitemtextExample pite = new
PromotionitemtextExample();
        
pite.createCriteria().andPromonetPromotionIdEqualTo(4);
                        Promotionitemtext pit = [Fill in the blank]
                        System.out.println(pit.toString());
                        sqlMap.commitTransaction();
                } finally {
                        sqlMap.endTransaction();

                }

<<attachment: winmail.dat>>

Reply via email to