• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows SQLITE Error

Netoxrulez

New Member
Joined
Jun 20, 2009
Messages
5
Reaction score
0
Hello, i have a problem , i open my server and see this error:

OTSYS_SQLITE3_PREPARE(): SQLITE ERROR: no such table: account_viplist (SELECT "p
layer_id" AS "vip" FROM "account_viplist" WHERE "account_id" = 244 AND "world_id
" = 0)


And he no save player because this error;
i update my server tfs 0.3.4 to TFS 0.3.6 http://otland.net/f18/8-54-forgotten-server-0-3-6pl1-crying-damson-59924/
and i do not want to reset;

Srry,bad english ;s

Att,
Netox.
 
Execute this query:
Code:
CREATE TABLE "account_viplist" (
	"account_id" INTEGER NOT NULL,
	"world_id" INTEGER NOT NULL DEFAULT 0,
	"player_id" INTEGER NOT NULL,
	UNIQUE ("account_id", "player_id"),
	FOREIGN KEY ("account_id") REFERENCES "accounts" ("id"),
	FOREIGN KEY ("player_id") REFERENCES "players" ("id")
);
 
Back
Top