PHP Classes

File: SQL File

Recommend this page to a friend!
  Classes of David Castillo   MySQL importer   ???   Download  
File: ???
Role: Auxiliary data
Content type: text/plain
Description: SQL File Example without Errors
Class: MySQL importer
Execute SQL statements from MySQL dump files
Author: By
Last change: No changes
Date: 10 years ago
Size: 734 bytes
 

Contents

Class file image Download
-- SQL Import File Example -- David Castillo Sanchez - [email protected] create database if not exists prueba; use prueba; CREATE TABLE if not exists `nombre` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `nombre` VARCHAR(60) NOT NULL, `apellidos` VARCHAR(60) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM; CREATE TABLE if not exists `facturas` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `factura` VARCHAR(60) NOT NULL, `fecha` VARCHAR(60) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM; CREATE TABLE if not exists `direcciones` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `calle` VARCHAR(60) NOT NULL, `numero` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM;