Slide 44 has a typo in it:

try {
  sqlMap.startTransaction();
  sqlMap.insert(�insertProduct�, product);
  sqlMap.update(�updateProduct�, product);
  product.delete(�deleteProduct�, product);
  sqlMap.commitTransaction();
} finally {
  sqlMap.endTransaction();
}

Should be:

try {
  sqlMap.startTransaction();
  sqlMap.insert(�insertProduct�, product);
  sqlMap.update(�updateProduct�, product);
  sqlMap.delete(�deleteProduct�, product);
  sqlMap.commitTransaction();
} finally {
  sqlMap.endTransaction();
}

Very nice job on the presentation. The Marketing Department would be
proud :)

--- Clinton Begin <[EMAIL PROTECTED]> wrote:
> Hi Alexander,
> 
> Certainly. Here is a PPT that I've used a few times.
> 
> http://www.ibatis.com/downloads/SQLMapping.ppt
> 
> Good luck.
> 
> Cheers,
> Clinton
> 
> On 4/29/05, Alexander Garbuz <[EMAIL PROTECTED]>
> wrote:
> > 
> > Hello,
> > 
> > First of all, I would like to thank you for making such a good
> software
> > product as iBATIS DAO and SQL MAP. I have been using it for about a
> year
> > and I have to say that I am very impressed with what you have done.
> > 
> > The company that I work for is looking into possibilities to
> replace the
> > existing application development framework that we developed
> internally
> > long time ago with iBATIS. I am currently working on making a power
> > point presentation on core iBATIS features. I was wondering if you
> have
> > something like that already done and available for public download
> or if
> > there are any presentation materials besides the PDF documentation
> > available on your site?
> > 
> > Thank you very much.
> > 
> > --
> > Alexander Garbuz
> > 
> > Isthmus Group Inc.
> > 222 State Street
> > Suite 300
> > Madison, WI 53703
> > phone: (608) 661-1234
> > cell: (608) 628 2448
> > [EMAIL PROTECTED]
> > www.isthmusgroup.com <http://www.isthmusgroup.com>
> > 
> >
> 

Reply via email to