Postado Junho 28, 2021 3 anos .Qual servidor ou website você utiliza como base? Pokeaimar Qual o motivo deste tópico? Ajuda Está surgindo algum erro? Se sim coloque-o aqui. Citar Eu estava trabalhando com outro server e ele abria o SQL tranquilamente, ja nesse poke aimar que baixei os arquivos estão em dll e eu não consigo jogar o arquivo dele em dll no phpmyadmin pra fazer a tabela. Porque o arquivo esta em dll e tem que estar em sql. Você tem o código disponível? Se tiver publique-o aqui: Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
Postado Julho 1, 2021 3 anos toda database online é obrigatóriamente em .SQL, as dll são para outras coisas não relacionadas, se a sql não estiver disponivel nos arquivos do game você pode tentar setar as tabelas de outro poketibia e ir corrigindo as que faltar ex: CREATE TABLE IF NOT EXISTS `accounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL DEFAULT '', `password` varchar(255) NOT NULL, `premdays` int(11) NOT NULL DEFAULT '0', `lastday` int(10) unsigned NOT NULL DEFAULT '0', `email` varchar(255) NOT NULL DEFAULT '', `key` varchar(128) NOT NULL DEFAULT '', `blocked` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'internal usage', `warnings` int(11) NOT NULL DEFAULT '0', `group_id` int(11) NOT NULL DEFAULT '1', `viptime` int(11) NOT NULL DEFAULT '0', `page_access` int(11) DEFAULT NULL, `page_lastday` int(11) DEFAULT NULL, `email_new` varchar(255) DEFAULT NULL, `email_new_time` int(15) DEFAULT NULL, `rlname` varchar(255) DEFAULT NULL, `location` varchar(255) DEFAULT NULL, `created` int(16) DEFAULT NULL, `email_code` varchar(255) DEFAULT NULL, `next_email` int(11) DEFAULT NULL, `premium_points` int(11) DEFAULT NULL, `nickname` char(48) DEFAULT NULL, `avatar` char(48) DEFAULT NULL, `about_me` text, `create_ip` int(11) NOT NULL, `create_date` int(11) NOT NULL, `last_post` int(11) NOT NULL, `flag` int(11) NOT NULL, `vip_time` int(15) NOT NULL DEFAULT '0', `guild_points` int(15) NOT NULL DEFAULT '0', `vote` int(15) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4838 ; -- -- Extraindo dados da tabela `accounts` -- INSERT INTO `accounts` (`id`, `name`, `password`, `premdays`, `lastday`, `email`, `key`, `blocked`, `warnings`, `group_id`, `viptime`, `page_access`, `page_lastday`, `email_new`, `email_new_time`, `rlname`, `location`, `created`, `email_code`, `next_email`, `premium_points`, `nickname`, `avatar`, `about_me`, `create_ip`, `create_date`, `last_post`, `flag`, `vip_time`, `guild_points`, `vote`) VALUES (2, 'kkkkk32515', 'f67870b4480dc562d8ccd0bc85e51e867485d7fd', 0, 1558209029, '', '', 0, 0, 1, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0), (1682, 'adm', '42ef63e7836ef622d9185c1a456051edf16095cc', 90, 1558214143, '[email protected]', '', 0, 0, 1, 0, NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, 0, 'Allan harlen', NULL, NULL, 0, 0, 0, 0, 0, 0, 0); -- -- Gatilhos `accounts` -- DROP TRIGGER IF EXISTS `ondelete_accounts`; DELIMITER // CREATE TRIGGER `ondelete_accounts` BEFORE DELETE ON `accounts` FOR EACH ROW BEGIN DELETE FROM `bans` WHERE `type` IN (3, 4) AND `value` = OLD.`id`; END // DELIMITER ;
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.