package TemporaryDatabase;
import ModSQL.*;
import java.sql.*;

/* TemporaryDatabase/Column.java
 *
 * Copyright (c) 2003 Chris Studholme <chris.studholme@utoronto.ca>
 *
 * May be copied or modified under the terms of the GNU General Public
 * License.  See COPYING for more information.
 */

/**
 * <p>Column data.
 *
 * @author chris.studholme@utoronto.ca
 */
class Column {
  public String name;
  public int type;
  public int maxlen;

  public Column(String name, int type, int maxlen) {
    this.name = name;
    this.type = type;
    this.maxlen = maxlen;
  }
}
