Login   Register  
PHP Classes
elePHPant
Icontem

File: sql.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Rodrigo Agostinho  >  Design Pattern PDO Operations  >  sql.sql  >  Download  
File: sql.sql
Role: Auxiliary data
Content type: text/plain
Description: Database table
Class: Design Pattern PDO Operations
Access SQL databases with the PHP PDO extension
Author: By
Last change:
Date: 2012-12-03 21:34
Size: 787 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump
-- version 2.10.3
-- http://www.phpmyadmin.net
-- 
-- Servidor: localhost
-- Tempo de Geração: Dez 04, 2012 as 02:22 AM
-- Versão do Servidor: 5.0.51
-- Versão do PHP: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

-- 
-- Banco de Dados: `pattern`
-- 

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

-- 
-- Estrutura da tabela `clients`
-- 

CREATE TABLE `clients` (
  `client_id` int(11) NOT NULL auto_increment,
  `name` varchar(30) NOT NULL,
  `street` varchar(50) NOT NULL,
  `fone` varchar(20) NOT NULL,
  PRIMARY KEY  (`client_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

-- 
-- Extraindo dados da tabela `clients`
-- 

INSERT INTO `clients` VALUES (1, 'Rodrigo', '1st Street', '1234567890');