15.12.2019, 00:21
I print the string in the console, it appeared right the name of the clan, still did not delete the row.
I changed and used a SQLite Improved Statement, and for some reason I can't explain worked.
Thanks to everyone who helped me
I changed and used a SQLite Improved Statement, and for some reason I can't explain worked.
PHP Code:
stmt_apagarPlayerClan = db_prepare(gAccounts, "DELETE FROM 'ServerClan' WHERE 'clanNome'=? COLLATE NOCASE");
stock ApagarPlayerClan(playerid)
{
stmt_bind_value(stmt_apagarPlayerClan, 0, DB::TYPE_STRING, GetPClan(playerid));
stmt_execute(stmt_apagarPlayerClan);
}