Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Fiz a importação do sql no phpmyadmin

Abaixo da mensagem de sucesso, veio essas outras informações:

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"# MySQL não retornou nenhum registo.
SET time_zone = "+00:00"# MySQL não retornou nenhum registo.
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */# MySQL não retornou nenhum registo.
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */# MySQL não retornou nenhum registo.
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */# MySQL não retornou nenhum registo.
/*!40101 SET NAMES utf8 */# MySQL não retornou nenhum registo.
CREATE TABLE IF NOT EXISTS `categorias` (
`id` int(11) NOT NULL,
`nome` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8# MySQL não retornou nenhum registo.
INSERT INTO `categorias` (`id`, `nome`) VALUES
(1, 'Transporte'),
(2, 'Educacao'),
(3, 'Lazer')# 3 linha(s) afectadas.
CREATE TABLE IF NOT EXISTS `produtos` (
`id` int(11) NOT NULL,
`nome` varchar(255) DEFAULT NULL,
`preco` decimal(10,2) DEFAULT NULL,
`descricao` text NOT NULL,
`usado` tinyint(1) [...]

Há algum problema ou está tudo certo?

2 respostas
solução!

Opa Geovane, não me parece que algo deu errado. Você teve algum problema? Caso não, está tudo certo!

Okay então.