Also, you can open a command prompt to your MySQL bin folder and type in the following:
mysqladmin -u user -p password 'new-password'
replace:
user with your user name.
password with your OLD password.
new-password with your new password.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|