27.02.2014, 09:47
Use data-types in the table. For example (assuming passwords use Whirlpool, thus the lenght is 129):
pawn Код:
CREATE TABLE IF NOT EXISTS Users (Name VARCHAR(21) COLLATE NOCASE,Password VARCHAR(129),Admin INTEGER DEFAULT 0 NOT NULL, ...

