1 message in com.mysql.lists.plusplusBUG
FromSent OnAttachments
John Skovronski23 Mar 2003 20:31 
Subject:BUG
From:John Skovronski (j.sk@worldnet.att.net)
Date:03/23/2003 08:31:55 PM
List:com.mysql.lists.plusplus

I am using Borland C++ Compiler 5.5, MySQL version 3.23.55, and mySQL++ version 1.7.1 for borland. In the examples found on the website, I ran into a problem. The line (Result res = query.store();) caused my program to crash stating that the instruction at memory location xxxxx referenced memory at xxxxx. The memory could not be read. The solution was to break the line into a declaration and an assignment statement. Result res; res = query.store(); Is this a mysql++ problem, or is it a Borland problem?