Re: SQLException when deleting

2005-05-09 Thread Lieven De Keyzer
This indeed solved my problem. Thanks a lot! From: Clinton Begin <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: Lieven De Keyzer <[EMAIL PROTECTED]> Subject: Re: SQLException when deleting Date: Mon, 9 May 2005 08:35:28 -0600 Try getting v2.0.9b. JPetStore doesn't necessar

Re: SQLException when deleting

2005-05-09 Thread Lieven De Keyzer
From: Clinton Begin <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: ibatis-user-java@incubator.apache.org Subject: Re: SQLException when deleting Date: Sun, 8 May 2005 21:45:01 -0600 Oddthe DAO template doesn't throw an exception... public int delete(String id, Object para

Re: SQLException when deleting

2005-05-08 Thread Clinton Begin
Oddthe DAO template doesn't throw an exception... public int delete(String id, Object parameterObject) {Maybe you're using an old version of the framework?Cheers,Clinton On 5/8/05, Lieven De Keyzer <[EMAIL PROTECTED]> wrote: This is a snapshot of my AccountSqlMapDao, following the concepts

SQLException when deleting

2005-05-08 Thread Lieven De Keyzer
This is a snapshot of my AccountSqlMapDao, following the concepts of the latest JPetStore. public void insertAccount(Account account) { insert("insertAccount", account); } public void updateAccount(Account account) { update("updateAccount", account); } public void deleteAccount(Account