iBATIS3 and SLF4J

2009-08-18 Thread Cyril Pfaff
Hi, Thanks for this amazing product. Currently, iBATIS3 currently depends on log4j. Even if I like log4j, It would be interesting to look at SLF4J (http://www.slf4j.org/) as it may offers more flexibility (Basically due to the fact that it's an abstraction layer for various logging frameworks.)

Re : Problem when executing multi result Sybase stored procedure

2006-09-21 Thread Cyril
e it, simplifying and putting the major part of the algorithmics in JAVA.Thanks,Cyril- Message d'origine De : [EMAIL PROTECTED]À : [EMAIL PROTECTED]Cc : user-java@ibatis.apache.orgEnvoyé le : Mercredi, 20 Septembre 2006, 5h28mn 35sObjet : RE: Problem when executing multi result Syba

Re : Re : Problem with multi result set

2006-09-19 Thread Cyril
y be a problem with the JDBC driver, has anybody been confronted to this problem? Thanks! Cyril Here is the code from SqlExecutor: private ResultSet getFirstResultSet(Statement stmt) throws SQLException { ResultSet rs = null; boolean hasMoreResults = true; while (hasMoreResults) {

Re : Problem when executing stored procedure "Incorrect syntax near the keyword"

2006-09-19 Thread Cyril
It seems that this stored procedure has a multi-result set result. The version of iBatis we are currently using doesn't work with such procedure, but I see the latest release supports this functionnality. Time to update our version of iBatis ! Cyril - Message d'origine

Problem when executing stored procedure "Incorrect syntax near the keyword"

2006-09-18 Thread Cyril
LOGGER.error("SQLException " + sqle.getMessage(), sqle); } Since I traced with the debugger quite deep in iBatis, I can't understand the problem. It should not come from iBatis, but does somebody have an idea? Thanks, Cyril Gambis

Re : Problem with iBatis SQLMap and stored procedure

2006-05-16 Thread Cyril
oblem between DBCP and Sybase or iBatis? Thank you very much, you saved my (professional) life (I did push iBatis on this project and another project very strongly) ! Cyril PS: my post can also be viewed as an exemple of how to use iBatis and stored procedures. The documentation of iBatis is not very

Problem with iBatis SQLMap and stored procedure

2006-05-16 Thread Cyril
ose(DelegatingResultSet.java:132) (which seems to be a Tomcat class), anybody found some way to make calling stored procedure (Database is SYBASE) work? I hope you could help me, sorry for the bad english, Cyril

RE: Stored procedures and iBatis

2006-02-09 Thread Cyril
stOfContacts = (List) sqlMap.queryForList("getContactsByBeginningOfName", paramMap); System.out.println(((Contact) listOfContacts.get(0)).getName); Cyril --- Cyril <[EMAIL PROTECTED]> a écrit : > Hi ! > > I'm auditing iBatis to decide if we choose this > technologie for

Stored procedures and iBatis

2006-02-09 Thread Cyril
apping from the result of the procedure to the object, but how? Some procedures return multiple result set. Is the proposition at http://opensource2.atlassian.com/confluence/oss/display/IBATIS/Improved+Stored+Procedure+Support+Whiteboard implemented? Many thank