Add some unit testing of the CfbSchema.
[cfb.git] / prod / net / jaekl / cfb / db / Row.java
index f25b0ae0bd93432e4b2378248794ad2545ca5939..fa3de9948ebb721a18da45230caaadd0131fc02b 100644 (file)
@@ -12,6 +12,7 @@ public class Row {
        }
        
        public int getNumColumns() { return m_columns.length; }
+       public Column getColumn(int idx) { return m_columns[idx]; }
        
        public String getString(int index) throws TypeMismatchException {
                checkType(index, Column.Type.VARCHAR);