Add "Describe" command, with support for describing both (a) specific table(s) and...
[squelch.git] / src / main / java / net / jaekl / squelch / sql / Row.java
index fd47301307e908e3122922ac367eab538155c4e8..88e87e2baaa3c773300797f7bcf7d0c97e263056 100644 (file)
@@ -7,6 +7,10 @@ public class Row {
                m_args = new Object[numCols];
        }
        
+       public Row(Object[] values) {
+               m_args = values.clone();
+       }
+       
        // 1-based index, like JDBC
        public void setValue(int idx, Object value) {
                m_args[idx - 1] = value;