describe content_type_product_info; +---------------------------------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------------------------+------------------+------+-----+---------+-------+ | vid | int(10) unsigned | NO | PRI | 0 | | | nid | int(10) unsigned | NO | | 0 | | | field_product_link_url | varchar(255) | NO | | | | | field_product_link_title | varchar(255) | NO | | | | | field_product_link_attributes | mediumtext | YES | | NULL | | | field_product_description_value | longtext | YES | | NULL | | +---------------------------------+------------------+------+-----+---------+-------+ **************************** */ // where each CSV column should be sored in the corresponding content_type_????? table $fields = array( "field_product_link_title", "field_product_link_url", "field_product_description_value" ); // used for the node revisions table // indicate which field (zero based) is the title, body, and/or teaser // user -1 if the body or teaser should be left out. Title is needed. $fieldmap = array ( "title" => 0, "body" => -1, "teaser" => 2 );