David Kinyanjui wrote:

I have a mysql++ question... I'm not sure if this is right list to post to.

It isn't. The MySQL++ mailing list's home is http://lists.mysql.com/plusplus

Well, I just upgraded mysql++ from version 1.7.9 to 1.7.17.

1.7.21 is the current version. See http://tangentsoft.net/mysql++/

Now, my problem is I don't seem to be getting the collect data from a table.

Have you tried the example programs?

if (rs.begin() != rs.end())

That will never be true for any STL or STL-like container. I think you want something like (rs.size() > 0).


1. Glib::ustring lastname = row["LastName"];

See the ChangeLog for why this does not work.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]



Reply via email to