Project:
| View Revisions: Issue #30891 | [ All Revisions ] [ Back to Issue ] | ||
| Summary | 0030891: Xsql files parser does not release statement for callable statements | ||
| Revision | 2015-09-24 10:40 by ioritzCia | ||
| Steps To Reproduce | Go to StockUtilData.java file. See select method: It is a Prepared Statement. Releases the statement in the finally -> connectionProvider.releasePreparedStatement(st); See getStock method: It is a Callable Statement. It does not release the statement. |
||
| Revision | 2015-09-23 10:04 by ioritzCia | ||
| Steps To Reproduce | Go to StockUtilData.java file. See select method: It is a Prepared Statement. Closes connection -> result.close(); Releases the statement in the finally -> connectionProvider.releasePreparedStatement(st); See getStock method: It is a Callable Statement. It does not close connection. It does not release the statement. |
||
| Copyright © 2000 - 2009 MantisBT Group |