10/02/2022 14:52
estou com esse problema
a tabela não cria
não sei oq está acontecendo
a tabela não cria
Código:
new str[600];
MEGAString[0] = EOS;
strcat(MEGAString, "CREATE TABLE IF NOT EXISTS `inventarios`(ID int AUTO_INCREMENT PRIMARY KEY,");
strcat(MEGAString, "Dono VARCHAR(24) DEFAULT 'Ninguem',");
strcat(MEGAString, "InvName0 VARCHAR(24) DEFAULT 'Nenhum', InvItem0 INT(20) DEFAULT 0, InvUnid0 INT(20) DEFAULT 0, InvType0 INT(20) DEFAULT 0, InvColor0 INT(20) DEFAULT 0,");
for(new i = 1; i != 74; i++)
{
format(str, 600, "InvName%d VARCHAR(24) DEFAULT 'Nenhum', InvItem%d INT(20) DEFAULT 0, InvUnid%d INT(20) DEFAULT 0, InvType%d INT(20) DEFAULT 0, InvColor%d INT(20) DEFAULT 0,", i,i,i,i,i);
strcat(MEGAString, str);
}
strcat(MEGAString, "InvName74 VARCHAR(24) DEFAULT 'Nenhum', InvItem74 INT(20) DEFAULT 0, InvUnid74 INT(20) DEFAULT 0, InvType74 INT(20) DEFAULT 0, InvColor74 INT(20) DEFAULT 0)");
mysql_tquery(DB, MEGAString);