PHP Classes

File: Database.sql

Recommend this page to a friend!
  Classes of Fernando Alls   Easy DB Work   Database.sql   Download  
File: Database.sql
Role: Example script
Content type: text/plain
Description: Sample database, install to execute test
Class: Easy DB Work
Execute MySQL queries using parameter lists
Author: By
Last change: updated file type
Date: 11 years ago
Size: 1,651 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump
-- version 3.4.9
-- http://www.phpmyadmin.net
--
-- Servidor: 127.0.0.1
-- Tempo de Geração: 08/06/2012 às 14h16min
-- Versão do Servidor: 5.5.20
-- Versão do PHP: 5.3.9

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Banco de Dados: `db_test`
--

-- --------------------------------------------------------

--
-- Estrutura da tabela `contact`
--

CREATE TABLE IF NOT EXISTS `contact` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `fone` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Extraindo dados da tabela `contact`
--

INSERT INTO `contact` (`id`, `name`, `email`, `fone`) VALUES
(1, 'Luiz Fernando Alves dos Anjos', 'fernandoguaiba@gmail.com', 'xxxx-xxxx'),
(2, 'Fernando Alves dos Anjos', 'fernandoguaiba@gmail.com', 'xxxx-xxxx'),
(3, 'Luiz Fernando', 'fernandoguaiba@gmail.com', 'xxxx-xxxx'),
(4, 'Luiz', 'fernandoguaiba@gmail.com', 'xxxx-xxxx'),
(5, 'Fernando Alves', 'fernandoguaiba@gmail.com', 'xxxx-xxxx'),
(6, 'Luiz dos Anjos', 'fernandoguaiba@gmail.com', 'xxxx-xxxx');

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;