Examples of varcharLargeColumnWidth()


Examples of er.extensions.jdbc.ERXSQLHelper.varcharLargeColumnWidth()

   * @return the new ERXMigrationColumn
   * @throws SQLException if the column cannot be created
   */
  public ERXMigrationColumn newLargeStringColumn(String name, boolean allowsNull) throws SQLException {
    ERXSQLHelper sqlHelper = ERXSQLHelper.newSQLHelper(_database.adaptorChannel());
    return newColumn(name, sqlHelper.varcharLargeJDBCType(), sqlHelper.varcharLargeColumnWidth(), 0, 0, allowsNull, null);
  }

  /**
   * Returns a new String column (VARCHAR) that corresponds to the varcharLarge prototype.  See newColumn(..) for the full docs.
   *
 
View Full Code Here

Examples of er.extensions.jdbc.ERXSQLHelper.varcharLargeColumnWidth()

   * @return the new ERXMigrationColumn
   * @throws SQLException if the column cannot be created
   */
  public ERXMigrationColumn newStringColumn(String name, boolean allowsNull, String defaultValue) throws SQLException {
    ERXSQLHelper sqlHelper = ERXSQLHelper.newSQLHelper(_database.adaptorChannel());
    return newColumn(name, sqlHelper.varcharLargeJDBCType(), sqlHelper.varcharLargeColumnWidth(), 0, 0, allowsNull, null, defaultValue);
  }

  /**
   * Returns a new localized String column (VARCHAR).  See newColumn(..) for the full docs.
   *
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.