14 messages in com.mysql.lists.plusplusRE: libmysqlpp.so minor version numbers?
FromSent OnAttachments
Warren Young11 Mar 2005 15:33 
Chris Frey12 Mar 2005 00:43 
Chris Frey12 Mar 2005 01:04 
Warren Young15 Mar 2005 12:57 
Warren Young15 Mar 2005 13:40 
Chris Frey18 Mar 2005 23:56 
Chris Gagnon19 Mar 2005 15:07 
Chris Gagnon19 Mar 2005 15:09 
Chris Gagnon19 Mar 2005 15:10 
Warren Young21 Mar 2005 19:34 
Chris Gagnon21 Mar 2005 21:58 
Warren Young21 Mar 2005 22:11 
Chris Gagnon22 Mar 2005 07:58 
Warren Young22 Mar 2005 17:04 
Subject:RE: libmysqlpp.so minor version numbers?
From:Chris Gagnon (chri@rogers.com)
Date:03/19/2005 03:09:44 PM
List:com.mysql.lists.plusplus

Ignore this I'll resend with a new title, was replying just to get the email address and didn't change the subject. -Chris

-----Original Message----- From: Chris Gagnon [mailto:chri@rogers.com] Sent: Saturday, March 19, 2005 6:08 PM To: 'plus@lists.mysql.com' Subject: RE: libmysqlpp.so minor version numbers?

I and trying to use the structure creation macros and get many(10 or so) multiple definition errors when linking all reference the EOSUserData I'm tryin to create.

This is the file it's created in, I'm use I don't use the name EOSUserData name anywhere else.

#ifndef EOS_PLAYER_H #define EOS_PLAYER_H 1

#include <string> #include <mysql++.h> #include <custom.h>

using namespace std; using namespace mysqlpp;

sql_create_9(EOSUserData, 1, 9, longlong, user_id, string, user_name, string, user_family_name, string, user_firstname, string, user_lastname, string, password, string, email, string, ipaddress, DateTime, signupdate)

class EOSPlayer{ public:

EOSPlayer(char *un, char *pass); ~EOSPlayer();

. . . private:

EOSUserData databaseData; EOSUserData currentData;

. . .

};

#endif

Any help would be great... Thanks