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 0496d23b156ad90d1891949a14f3d33ce4e02c47..88e87e2baaa3c773300797f7bcf7d0c97e263056 100644 (file)
@@ -7,6 +7,11 @@ 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;
        }