------------- EXCEPTION: RM::Exception::Database -------------
MSG: Unable to execute query:



		/* for a given set of suppliers, retrieve item info
		   for each item associated with the supplier
		*/

		SELECT    Supplier_Item.Supplier_id AS supplier_id,
		          Item.id        AS id,
		          Item.known_as  AS known_as,
		          Item.brand AS brand,
		          Category.id        AS category_id,
		          Category.full_name AS category_full_name

		FROM      rf_Item          AS Item,
		          rf_Supplier_Item AS Supplier_Item,
		          rf_Category_Item AS Category_Item,
		          rf_Category      AS Category

		WHERE     Item.id = Supplier_Item.Item_id
		AND       Item.is_validated = 'Yes'
		AND       Supplier_Item.Supplier_id IN ( ? )
		AND       Category_Item.Item_id = Item.id
		AND       Category_Item.Category_id = Category.id
		ORDER BY  Supplier_Item.Supplier_id ASC, Item.known_as ASC, Category.id
    

Reason: Lost connection to MySQL server during query.
STACK: Error::throw
STACK: RM::Base::throw /home/humility/public_html/cgi-bin/produce/_lib/RM/Base.pm:452
STACK: RM::DB::Base::do_query /home/humility/public_html/cgi-bin/produce/_lib/RM/DB/Base.pm:347
STACK: RM::DB::Base::do_fetch /home/humility/public_html/cgi-bin/produce/_lib/RM/DB/Base.pm:255
STACK: Foundry::fetch_hash_supplier_item /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry/Fetch/Item.pm:122
STACK: Foundry::Thing::_init /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry/Thing.pm:470
STACK: Foundry::Thing::handler /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry/Thing.pm:109
STACK: Foundry::Thing::new /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry/Thing.pm:31
STACK: Foundry::Email::Friend::_init /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry/Email/Friend.pm:141
STACK: Foundry::Email::Friend::handler /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry/Email/Friend.pm:78
STACK: Foundry::_init /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry.pm:234
STACK: Foundry::handle /home/humility/public_html/cgi-bin/produce/reviews/do/admin/Foundry.pm:47
--------------------------------------------------------------