Package com.uwyn.rife.database.queries

Examples of com.uwyn.rife.database.queries.CreateTable


 
  public generic(Datasource datasource)
  {
    super(datasource);

    mCreateTableSeen = new CreateTable(getDatasource())
      .table("seen")
      .column("botname", String.class, 30, CreateTable.NOTNULL)
      .column("channel", String.class, 30, CreateTable.NOTNULL)
      .column("servername", String.class, 60, CreateTable.NOTNULL)
      .columns(SeenData.class)
View Full Code Here


  public generic(Datasource datasource)
  {
    super(datasource);

    mCreateTableLog = new CreateTable(getDatasource())
      .table("log")
      .column("moment", Timestamp.class, CreateTable.NOTNULL)
      .column("botname", String.class, 30, CreateTable.NOTNULL)
      .column("channel", String.class, 30, CreateTable.NOTNULL)
      .column("servername", String.class, 60, CreateTable.NOTNULL)
View Full Code Here

TOP

Related Classes of com.uwyn.rife.database.queries.CreateTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.