[HELP][PROBLEM] in setupping server

04/22/2011 19:46 rofman2008#1
hey guys,,

am new in pserver codding world so i wanna a help

when am installing server i have to download a source and it have a SQL file with it but what can i do with it

cant upload it to navicat or any thing also


PIC:


[Only registered and activated users can see links. Click Here To Register...]




Please Dont insullt me

am a noob in Co PServer World :(
04/22/2011 20:06 { Angelius }#2
hello rofman



loock at the console screen once the error appears and see what is the last thing loaded ,

like .

loaded (this much) items
loaded (this much) whatever

and than go to the program.cs and search for the last void that loaded and the error well be in the next void that must execute .

QE,

Database.loadGuilds();//if this was the last void that has been executed
Database.LoadItems();// than the error is at this void

right click it and go to definition

place a

try
{
the void code goes here
}
catch (Exception X) { Console.WriteLine(X);}

hit F6 and debug your project
and than after all you'll find that the whole thing happens cus off a missing column in the table that the sql command must load .

QE.
CMD.Select(Guilds);// simply the mysql is telling you that there is a missing column/raw in side the database which is the Guilds table/raw.

good luck .