From: <gla...@hy...> - 2010-01-27 23:30:45
|
Author: glaullon Date: 2010-01-27 15:30:36 -0800 (Wed, 27 Jan 2010) New Revision: 14240 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=14240 Modified: trunk/src/org/hyperic/hq/product/JDBCMeasurementPlugin.java Log: HHQ-3696 Modified: trunk/src/org/hyperic/hq/product/JDBCMeasurementPlugin.java =================================================================== --- trunk/src/org/hyperic/hq/product/JDBCMeasurementPlugin.java 2010-01-27 23:30:35 UTC (rev 14239) +++ trunk/src/org/hyperic/hq/product/JDBCMeasurementPlugin.java 2010-01-27 23:30:36 UTC (rev 14240) @@ -73,7 +73,7 @@ private HashMap _colMap = new HashMap(), _valMap = new HashMap(); - private int _numRows, _updateRows; + private int _numRows; /** * Config schema includes jdbc URL, database username and password. @@ -340,7 +340,6 @@ private String getSqlRow(Statement stmt) throws SQLException { StringBuffer buf = new StringBuffer(); do { - _updateRows = stmt.getUpdateCount(); ResultSet rs = stmt.getResultSet(); if (stmt.getUpdateCount() != -1) { continue; |