-- phpMyAdmin SQL Dump
-- version 2.8.0.2
-- http://www.phpmyadmin.net
-- 
-- Host: localhost
-- Generation Time: May 02, 2006 at 07:29 PM
-- Server version: 4.1.18
-- PHP Version: 4.4.2
-- 
-- Database: `truecowb_sandbox`
-- 

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

-- 
-- Table structure for table `products`
-- 

CREATE TABLE `products` (
  `id` varchar(30) NOT NULL default '',
  `name` varchar(60) NOT NULL default '',
  `type` varchar(30) NOT NULL default '',
  `price` decimal(10,2) NOT NULL default '0.00',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- 
-- Dumping data for table `products`
-- 

INSERT INTO `products` VALUES ('123451', 'Park''s Great Hits', 'Music', 19.99);
INSERT INTO `products` VALUES ('123452', 'Silly Puddy', 'Toy', 3.99);
INSERT INTO `products` VALUES ('123453', 'Playstation', 'Toy', 89.95);
INSERT INTO `products` VALUES ('123454', 'Men''s T-Shirt', 'Clothing', 32.50);
INSERT INTO `products` VALUES ('123455', 'Blouse', 'Clothing', 34.97);
INSERT INTO `products` VALUES ('123456', 'Electronica 2002', 'Music', 3.99);
INSERT INTO `products` VALUES ('123457', 'Country Tunes', 'Music', 21.55);
INSERT INTO `products` VALUES ('123458', 'Watermelon', 'Food', 8.73);
