View Single Post
  #10  
Old 08-22-2004, 12:21 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Quote:
Originally Posted by manglervirus
i ran dos command and typed in

mysql -u root mysql and i tried it with my username in place of root and this is what it said

c:/ documents and setings\owner>mysql -u root 'mysql' is not reconized as internal comand or external comand,
operable program or batch file.
dude okay mysql.exe is not in C:/Documents and Settings/Owner and obviously you dont have mysql/bin set to PATH, i would've thought it would obvious to cd to bin.

-edit-
And you were supposed to do
Quote:
Originally Posted by Cisyouc
mysql -u user -p dbname
NOT
Quote:
Originally Posted by Cisyouc
mysql -u user
Replace:
user: With your MySQL Username
dbname: With your EQEMu Database Name


(Sorry im a little ticked at something else right now too)
__________________
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.