Troubleshooting
The following situations and their solutions may be helpful if you notice increased memory use in jConnect applications.
ResultSet rs = _conn.prepareCall(_query).execute();
... rs.close();
PreparedStatement ps = _conn.prepareCall(_query); ResultSet rs = ps.execute();
... ps.close(); rs.close();
| Copyright (C) 2005. Sybase Inc. All rights reserved. |
| |