That works fine..
Folks, I don't want to get on a rant, but if you are going to run a server, you REALLY need to learn SQL a bit and some basic mysql syntax. Not having any idea how the database works is going to frustrate you to no end.
There are TONS of mysql tutorials on the web, use some of them and get an understanding of how to manage the database, believe me, you're lives will be much better.
The EASY way to do this.
1) Copy the new items.sql to the C:\mysql\bin directory
2) Open a DOS command window (if you dont know how to do this, there are instructions out there)
3) cd c:\mysql\bin
4) type 'mysql' This opens the mysql interface.
5) use eq;
6) drop table items;
7) source items.sql;
Thats it, and it doesnt require any external tools. Here are a few mysql commands to get you started, but if you are going to run your own server, for goodness sake learn a bit about the tools we use to manage it. We arent a basic mysql forum! I don't mind a few mysql questions here or there, but these forums shouldnt be filled with 100 questions on 'how do i use mysql'. There is TONS out there on managing a mysql database, use google and find a few, print them out, read them in the toilet.
Basic Commands:
show databases; //shows all databases installed on your mysql instance
use <database>; //sets that as the active database
show tables; //shows all currently defined tables in the database you selected
describe tablename; //gives you a description of the format of the table
select * from <tablename>; //displays all records in the indicated tablename
If you're going to run an eqemu server, learn to use the tools.. Anyone that says 'I want to run a server, but I don't want to have to learn all this new computer stuff ' really should stick to playing on someone elses server.
Please keep in mind I'm not picking on anyone, I'm just telling you, going to run your own server? LEARN MYSQL ! It's not hard at all
