From: Warren Young Date: October 5 2004 2:53pm Subject: Re: To get value from MySql field problem List-Archive: http://lists.mysql.com/plusplus/3544 Message-Id: <4162B57A.4000406@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cgifalco@stripped wrote: > cout << "Name" << row["name"] << "\n"; Indexing by a row by a string had to be removed; it depended on lax C++ interpretation in older versions of g++. If you must use this feature (and I wish you wouldn't...it's inefficient) it is available as Row.lookup_by_name().