You are on page 1of 2

-- phpMyAdmin SQL Dump

-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 14, 2011 at 04:04 PM
-- Server version: 5.1.41
-- PHP Version: 5.3.1

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

/*!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 */;

--
-- Database: `randomproverb`
--

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

--
-- Table structure for table `proverb_number`
--

CREATE TABLE IF NOT EXISTS `proverb_number` (


`proverb_number` int(11) NOT NULL,
`proverb` varchar(100) NOT NULL,
`display_count` int(11) NOT NULL,
PRIMARY KEY (`proverb_number`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `proverb_number`
--

INSERT INTO `proverb_number` (`proverb_number`, `proverb`, `display_count`) VALUES


(9, ' Each generation will reap what the former generation has sown"', 0),
(8, ' Dig the well before you are thirsty"', 0),
(6, ' "A rat who gnaws at a cat''s tail invites destruction"', 0),
(7, ' "Be the first to the field and the last to the couch"', 0),
(5, ' "A fool judges people by the presents they give him"', 0),
(4, ' "A diamond with a flaw is worth more than a pebble without imperfections"', 0),
(3, ' "A child''s life is like a piece of paper on which every person leaves a mark"', 0),
(2, ' "A book is like a garden carried in the pocket"', 0),
(1, ' "A book tightly shut is but a block of paper"', 0);

/*!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 */;

You might also like