10.11.2013, 10:13
theres a mistake,
should be
otherwise you get
this is because you forwarded
pawn Код:
ConnectSQL();
pawn Код:
ConnectSQLite();
pawn Код:
error 017: undefined symbol "ConnectSQL"
pawn Код:
forward public ConnectSQLite(); //<---- SQLite and not SQL.
public ConnectSQLite()
{
Users = db_open("PlayersBase.db");
db_query(Users, "CREATE TABLE IF NOT EXISTS `USERS` (`NAME`, `PASSWORD`, `CASH`)");
print("[SQL]:`Has connected Succesfully`");
return 1;
}

