Searched defs:cr (Results 1 - 1 of 1) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/jdbc/
H A DConnectionManager.java77 ConnectionResource cr = connections.poll();
78 if (cr == null || !cr.isValid()) {
79 cr = new ConnectionResource(this);
81 return cr;
87 * @param cr connection resource object
90 public void releaseConnection(ConnectionResource cr) throws SQLException { argument
91 cr.rollback();
92 connections.offer(cr);

Completed in 25 milliseconds