Make sure that mysqld-nt.exe is running in the task manager (It will be in the processes tab and labeled as SYSTEM. If this is not running, thats your problem).
__________________
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.
|