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.)
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
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) {
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
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
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
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
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
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