Package com.webobjects.jdbcadaptor

Examples of com.webobjects.jdbcadaptor.ERXJDBCColumn


    public void setAttributesToFetch(NSArray<EOAttribute> attributes) {
      _attributes = attributes;
      int j;
      if (_attributes == null || (j = _attributes.count()) == 0)
        return;
      ERXJDBCColumn columns[] = new ERXJDBCColumn[j];
      for (int i = 0; i < j; i++)
        columns[i] = newERXJDBCColumn(_attributes.objectAtIndex(i), this, i + 1, _resultSet);

      _selectedColumns = new NSArray(columns);
    }
View Full Code Here

TOP

Related Classes of com.webobjects.jdbcadaptor.ERXJDBCColumn

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.