From: Warren Young Date: July 29 2008 10:33am Subject: Re: "undefined reference to `mysqlpp::Connection::connect(char const*, char const*, char const*, char const*, unsigned int)'" List-Archive: http://lists.mysql.com/plusplus/7826 Message-Id: <6BD1BCE2-A556-4F98-872B-E8A0DCF33C2D@etr-usa.com> MIME-Version: 1.0 (Apple Message framework v928.1) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit On Jul 29, 2008, at 3:53 AM, Alex wrote: > But, does it actually apply at this point? -- awi_config is not an > array > that has anything to do with SQL. So...why are you trying to compare one of its elements to a SQL null, then? If you store data from a SQL query in this array, and any of the values can be SQL null, you want to declare it like this: mysqlpp::Null awi_config[10][10]. *Then* you can compare its elements to mysqlpp::null.