Login   Register  
PHP Classes
elePHPant
Icontem

File: db.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Duy A. Nguyen  >  Small MySQL Connection  >  db.sql  >  Download  
File: db.sql
Role: Application script
Content type: text/plain
Description: mysql db example script
Class: Small MySQL Connection
MySQL database access wrapper
Author: By
Last change:
Date: 2006-04-30 10:06
Size: 1,062 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump
-- version 2.6.1-rc1
-- http://www.phpmyadmin.net
-- 
-- Host: localhost
-- Generation Time: May 01, 2006 at 12:31 AM
-- Server version: 5.0.18
-- PHP Version: 5.1.2
-- 
-- Database: `encyclopedia`
-- 

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

-- 
-- Table structure for table `agu_ency_entries`
-- 
DROP TABLE IF EXISTS `agu_ency_entries`;
CREATE TABLE `agu_ency_entries` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `name` varchar(50) NOT NULL,
  `description` varchar(1000) NOT NULL,
  `screenshoot` tinyint(1) unsigned zerofill default NULL,
  `iscat` tinyint(1) unsigned zerofill default '1',
  `parentid` bigint(20) unsigned default NULL,
  PRIMARY KEY  (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

-- 
-- Dumping data for table `agu_ency_entries`
-- 

INSERT INTO `agu_ency_entries` VALUES (1, 'MS Word', 'Microsoft Word', 0, 0, 0);
INSERT INTO `agu_ency_entries` VALUES (2, 'MS Excel', 'Microsoft Excel', 0, 0, 0);