Hi all,

I want to create a class to warp the MySQL C API, the problem is when I try to let a MYSQL mySql become a data member of the new class, I found I can't assign the mySql using this normal way mysql= sql, because MYSQL is a C structure, nobody overload the operator=, and MYSQL do have some pointer data members, so, what's the better way to handle it, wrap MYSQL first?

Thanks.

peter