select queries now work, and print tabular output.
[squelch.git] / src / main / java / net / jaekl / squelch / sql / Row.java
index 0496d23b156ad90d1891949a14f3d33ce4e02c47..fd47301307e908e3122922ac367eab538155c4e8 100644 (file)
@@ -7,6 +7,7 @@ public class Row {
                m_args = new Object[numCols];
        }
        
+       // 1-based index, like JDBC
        public void setValue(int idx, Object value) {
                m_args[idx - 1] = value;
        }