legacy_data 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. data/Rakefile +37 -1
  2. data/VERSION +1 -1
  3. data/examples/blog_migration.rb +26 -0
  4. data/examples/create_j2ee_petstore.sql +91 -0
  5. data/examples/delete_j2ee_petstore.sql +14 -0
  6. data/examples/drupal_6_14.sql +809 -0
  7. data/examples/generated/blog_mysql/comment.rb +11 -0
  8. data/examples/generated/blog_mysql/factories.rb +9 -0
  9. data/examples/generated/blog_mysql/post.rb +11 -0
  10. data/examples/generated/blog_mysql/tag.rb +11 -0
  11. data/{spec/functional/expected → examples/generated/blog_sqlite3}/comment.rb +3 -4
  12. data/examples/generated/blog_sqlite3/factories.rb +12 -0
  13. data/{spec/functional/expected → examples/generated/blog_sqlite3}/post.rb +3 -3
  14. data/examples/generated/blog_sqlite3/tag.rb +11 -0
  15. data/examples/generated/drupal_mysql/access.rb +12 -0
  16. data/examples/generated/drupal_mysql/action.rb +11 -0
  17. data/examples/generated/drupal_mysql/actions_aid.rb +11 -0
  18. data/examples/generated/drupal_mysql/authmap.rb +13 -0
  19. data/examples/generated/drupal_mysql/batch.rb +12 -0
  20. data/examples/generated/drupal_mysql/block.rb +13 -0
  21. data/examples/generated/drupal_mysql/blocks_role.rb +12 -0
  22. data/examples/generated/drupal_mysql/box.rb +13 -0
  23. data/examples/generated/drupal_mysql/cache.rb +12 -0
  24. data/examples/generated/drupal_mysql/cache_block.rb +12 -0
  25. data/examples/generated/drupal_mysql/cache_filter.rb +12 -0
  26. data/examples/generated/drupal_mysql/cache_form.rb +12 -0
  27. data/examples/generated/drupal_mysql/cache_menu.rb +12 -0
  28. data/examples/generated/drupal_mysql/cache_page.rb +12 -0
  29. data/examples/generated/drupal_mysql/cache_update.rb +12 -0
  30. data/examples/generated/drupal_mysql/comment.rb +12 -0
  31. data/examples/generated/drupal_mysql/factories.rb +370 -0
  32. data/examples/generated/drupal_mysql/filter.rb +13 -0
  33. data/examples/generated/drupal_mysql/filter_format.rb +13 -0
  34. data/examples/generated/drupal_mysql/flood.rb +12 -0
  35. data/examples/generated/drupal_mysql/history.rb +12 -0
  36. data/examples/generated/drupal_mysql/menu_custom.rb +11 -0
  37. data/examples/generated/drupal_mysql/menu_link.rb +12 -0
  38. data/examples/generated/drupal_mysql/menu_router.rb +12 -0
  39. data/examples/generated/drupal_mysql/node.rb +13 -0
  40. data/examples/generated/drupal_mysql/node_access.rb +12 -0
  41. data/examples/generated/drupal_mysql/node_comment_statistic.rb +12 -0
  42. data/examples/generated/drupal_mysql/node_counter.rb +12 -0
  43. data/examples/generated/drupal_mysql/node_revision.rb +12 -0
  44. data/examples/generated/drupal_mysql/node_type.rb +12 -0
  45. data/examples/generated/drupal_mysql/permission.rb +12 -0
  46. data/examples/generated/drupal_mysql/role.rb +12 -0
  47. data/examples/generated/drupal_mysql/session.rb +12 -0
  48. data/examples/generated/drupal_mysql/system.rb +12 -0
  49. data/examples/generated/drupal_mysql/term_data.rb +12 -0
  50. data/examples/generated/drupal_mysql/term_hierarchy.rb +12 -0
  51. data/examples/generated/drupal_mysql/term_node.rb +12 -0
  52. data/examples/generated/drupal_mysql/term_relation.rb +13 -0
  53. data/examples/generated/drupal_mysql/term_synonym.rb +12 -0
  54. data/examples/generated/drupal_mysql/uploaded_files.rb +12 -0
  55. data/examples/generated/drupal_mysql/url_alias.rb +12 -0
  56. data/examples/generated/drupal_mysql/user.rb +14 -0
  57. data/examples/generated/drupal_mysql/users_role.rb +12 -0
  58. data/examples/generated/drupal_mysql/variable.rb +11 -0
  59. data/examples/generated/drupal_mysql/vocabulary.rb +12 -0
  60. data/examples/generated/drupal_mysql/vocabulary_node_type.rb +12 -0
  61. data/examples/generated/drupal_mysql/watchdog.rb +12 -0
  62. data/examples/generated/j2ee_petstore_mysql/address.rb +11 -0
  63. data/examples/generated/j2ee_petstore_mysql/category.rb +11 -0
  64. data/examples/generated/j2ee_petstore_mysql/factories.rb +57 -0
  65. data/examples/generated/j2ee_petstore_mysql/id_gen.rb +12 -0
  66. data/examples/generated/j2ee_petstore_mysql/item.rb +12 -0
  67. data/examples/generated/j2ee_petstore_mysql/product.rb +11 -0
  68. data/examples/generated/j2ee_petstore_mysql/seller_contact_info.rb +11 -0
  69. data/examples/generated/j2ee_petstore_mysql/tag.rb +13 -0
  70. data/examples/generated/j2ee_petstore_mysql/tag_item.rb +13 -0
  71. data/examples/generated/j2ee_petstore_mysql/ziplocation.rb +11 -0
  72. data/examples/generated/j2ee_petstore_oracle/address.rb +11 -0
  73. data/examples/generated/j2ee_petstore_oracle/category.rb +11 -0
  74. data/examples/generated/j2ee_petstore_oracle/factories.rb +52 -0
  75. data/examples/generated/j2ee_petstore_oracle/id_gen.rb +12 -0
  76. data/examples/generated/j2ee_petstore_oracle/item.rb +15 -0
  77. data/examples/generated/j2ee_petstore_oracle/product.rb +12 -0
  78. data/examples/generated/j2ee_petstore_oracle/sellercontactinfo.rb +11 -0
  79. data/examples/generated/j2ee_petstore_oracle/tag.rb +13 -0
  80. data/examples/generated/j2ee_petstore_oracle/ziplocation.rb +11 -0
  81. data/examples/generated/j2ee_petstore_sqlite3/address.rb +12 -0
  82. data/examples/generated/j2ee_petstore_sqlite3/category.rb +12 -0
  83. data/examples/generated/j2ee_petstore_sqlite3/factories.rb +57 -0
  84. data/examples/generated/j2ee_petstore_sqlite3/id_gen.rb +13 -0
  85. data/examples/generated/j2ee_petstore_sqlite3/item.rb +13 -0
  86. data/examples/generated/j2ee_petstore_sqlite3/product.rb +12 -0
  87. data/examples/generated/j2ee_petstore_sqlite3/seller_contact_info.rb +12 -0
  88. data/examples/generated/j2ee_petstore_sqlite3/tag.rb +13 -0
  89. data/examples/generated/j2ee_petstore_sqlite3/tag_item.rb +14 -0
  90. data/examples/generated/j2ee_petstore_sqlite3/ziplocation.rb +11 -0
  91. data/generators/models_from_tables/models_from_tables_generator.rb +5 -36
  92. data/generators/models_from_tables/templates/model.rb +5 -39
  93. data/legacy_data.gemspec +187 -11
  94. data/lib/active_record/connection_adapters/oracleenhanced_adapter.rb +85 -0
  95. data/lib/legacy_data.rb +5 -2
  96. data/lib/legacy_data/schema.rb +10 -7
  97. data/lib/legacy_data/table_class_name_mapper.rb +1 -1
  98. data/lib/legacy_data/table_definition.rb +120 -5
  99. data/spec/expected/post.rb +3 -3
  100. data/spec/functional/blog_adapterspec.rb +45 -0
  101. data/spec/functional/database.yml +45 -0
  102. data/spec/functional/drupal_adapterspec.rb +54 -0
  103. data/spec/functional/functional_spec_helper.rb +24 -0
  104. data/spec/functional/j2ee_petstore_adapterspec.rb +57 -0
  105. data/spec/legacy_data/schema_spec.rb +7 -3
  106. data/spec/legacy_data/table_definition_spec.rb +101 -10
  107. data/spec/models_from_tables_generator_spec.rb +19 -7
  108. data/spec/spec_helper.rb +6 -18
  109. metadata +193 -10
  110. data/examples/j2ee_petstore.sql +0 -512
  111. data/lib/active_record/connection_adapters/oracle_enhanced_adapter.rb +0 -61
  112. data/spec/functional/models_from_tables_spec.rb +0 -27
@@ -1,512 +0,0 @@
1
- -- The J2EE Petstore Database
2
-
3
- create table category(
4
- categoryid VARCHAR(10) NOT NULL,
5
- name VARCHAR(25) NOT NULL,
6
- description VARCHAR(255) NOT NULL,
7
- imageurl VARCHAR(55),
8
- primary key (categoryid)
9
- );
10
-
11
- CREATE TABLE product (
12
- productid VARCHAR(10) NOT NULL,
13
- categoryid VARCHAR(10) NOT NULL,
14
- name VARCHAR(25) NOT NULL,
15
- description VARCHAR(255) NOT NULL,
16
- imageurl VARCHAR(55),
17
- primary key (productid),
18
- foreign key (categoryid) references category(categoryid)
19
- );
20
-
21
- CREATE TABLE Address (
22
- addressid VARCHAR(10) NOT NULL,
23
- street1 VARCHAR(55) NOT NULL,
24
- street2 VARCHAR(55),
25
- city VARCHAR(55) NOT NULL,
26
- state VARCHAR(25) NOT NULL,
27
- zip VARCHAR(5) NOT NULL,
28
- latitude DECIMAL(14,10) NOT NULL,
29
- longitude DECIMAL(14,10) NOT NULL,
30
- primary key (addressid)
31
- );
32
-
33
- CREATE TABLE SellerContactInfo (
34
- contactinfoid VARCHAR(10) NOT NULL,
35
- lastname VARCHAR(24) NOT NULL,
36
- firstname VARCHAR(24) NOT NULL,
37
- email VARCHAR(24) NOT NULL,
38
- primary key (contactinfoid)
39
- );
40
-
41
- CREATE TABLE item (
42
- itemid VARCHAR(10) NOT NULL,
43
- productid VARCHAR(10) NOT NULL,
44
- name VARCHAR(30) NOT NULL,
45
- description VARCHAR(500) NOT NULL,
46
- imageurl VARCHAR(55),
47
- imagethumburl VARCHAR(55),
48
- price DECIMAL(14,2) NOT NULL,
49
- address_addressid VARCHAR(10) NOT NULL,
50
- contactinfo_contactinfoid VARCHAR(10) NOT NULL,
51
- totalscore INTEGER NOT NULL,
52
- numberofvotes INTEGER NOT NULL,
53
- disabled INTEGER NOT NULL,
54
- primary key (itemid),
55
- foreign key (address_addressid) references Address(addressid),
56
- foreign key (productid) references product(productid),
57
- foreign key (contactinfo_contactinfoid) references SellerContactInfo(contactinfoid)
58
- );
59
-
60
- CREATE TABLE id_gen (
61
- gen_key VARCHAR(20) NOT NULL,
62
- gen_value INTEGER NOT NULL,
63
- primary key (gen_key)
64
- );
65
-
66
- CREATE TABLE ziplocation (
67
- zipcode INTEGER NOT NULL,
68
- city VARCHAR(30) NOT NULL,
69
- state VARCHAR(2) NOT NULL,
70
- primary key (zipcode)
71
- );
72
-
73
-
74
- create table tag(
75
- tagid INTEGER NOT NULL,
76
- tag VARCHAR(30) NOT NULL,
77
- refcount INTEGER NOT NULL,
78
- primary key (tagid),
79
- unique(tag)
80
- );
81
-
82
-
83
- create table tag_item(
84
- tagid INTEGER NOT NULL,
85
- itemid VARCHAR(10) NOT NULL,
86
- unique(tagid, itemid),
87
- foreign key (itemid) references item(itemid),
88
- foreign key (tagid) references tag(tagid)
89
- );
90
-
91
-
92
- INSERT INTO category VALUES('CATS', 'Cats', 'Loving and finicky friends', 'cats_icon.gif');
93
- INSERT INTO category VALUES('DOGS', 'Dogs', 'Loving and furry friends', 'dogs_icon.gif');
94
- INSERT INTO category VALUES('BIRDS', 'Birds', 'Loving and feathery friends', 'birds_icon.gif');
95
- INSERT INTO category VALUES('REPTILES', 'Reptiles', 'Loving and scaly friends', 'reptiles_icon.gif');
96
- INSERT INTO category VALUES('FISH', 'Fish', 'Loving aquatic friends', 'fish_icon.gif');
97
-
98
- INSERT INTO product VALUES('feline01', 'CATS', 'Hairy Cat', 'Great for reducing mouse populations', 'cat1.gif');
99
- INSERT INTO product VALUES('feline02', 'CATS', 'Groomed Cat', 'Friendly house cat keeps you away from the vacuum', 'cat2.gif');
100
- INSERT INTO product VALUES('canine01', 'DOGS', 'Medium Dogs', 'Friendly dog from England', 'dog1.gif');
101
- INSERT INTO product VALUES('canine02', 'DOGS', 'Small Dogs', 'Great companion dog to sit on your lap','dog2.gif');
102
- INSERT INTO product VALUES('avian01', 'BIRDS', 'Parrot', 'Friend for a lifetime.', 'bird1.gif');
103
- INSERT INTO product VALUES('avian02', 'BIRDS', 'Exotic', 'Impress your friends with your colorful friend.','bird2.gif');
104
- INSERT INTO product VALUES('fish01', 'FISH', 'Small Fish', 'Fits nicely in a small aquarium.','fish2.gif');
105
- INSERT INTO product VALUES('fish02', 'FISH', 'Large Fish', 'Need a large aquarium.','fish3.gif');
106
- INSERT INTO product VALUES('reptile01', 'REPTILES', 'Slithering Reptiles', 'Slides across the floor.','lizard1.gif');
107
- INSERT INTO product VALUES('reptile02', 'REPTILES', 'Crawling Reptiles', 'Uses legs to move fast.','lizard2.gif');
108
-
109
- INSERT INTO Address VALUES('1', 'W el Camino Real and Castro St', '', 'Mountain View','CA','94040',37.38574,-122.083973);
110
- INSERT INTO Address VALUES('2', 'Shell Blvd and Beach Park Blvd', '', 'Foster City','CA','94404',37.546935,-122.263978);
111
- INSERT INTO Address VALUES('3', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
112
- INSERT INTO Address VALUES('4', 'S 1st St and W Santa Clara St', '', 'San Jose','CA','95113',37.336141,-121.890666);
113
- INSERT INTO Address VALUES('5', '1st St and Market St ', '', 'San Francisco','CA','94105',37.791028,-122.399082);
114
- INSERT INTO Address VALUES('6', 'Paseo Padre Pky and Fremont Blvd', '', 'Fremont','CA','94555',37.575035,-122.041273);
115
- INSERT INTO Address VALUES('7', 'W el Camino Real and S Mary Ave', '', 'Sunnyvale','CA','94087',37.371641,-122.048772);
116
- INSERT INTO Address VALUES('8', 'Bay Street and Columbus Ave ', '', 'San Francisco','CA','94133',37.805328,-122.416882);
117
- INSERT INTO Address VALUES('9', 'El Camino Real and Scott Blvd', '', 'Santa Clara','CA','95050',37.352141 ,-121.959569);
118
- INSERT INTO Address VALUES('10', 'W el Camino Real and Hollenbeck Ave', '', 'Sunnyvale','CA','94087',37.369941,-122.041271);
119
- INSERT INTO Address VALUES('11', 'S Main St and Serra Way', '', 'Milpitas','CA','95035',37.428112,-121.906505);
120
- INSERT INTO Address VALUES('12', 'Great Mall Pky and S Main St', '', 'Milpitas','CA','95035',37.414722,-121.902085);
121
- INSERT INTO Address VALUES('13', 'Valencia St and 16th St', '', 'San Francisco','CA','94103',37.764985,-122.421886);
122
- INSERT INTO Address VALUES('14', 'S 1st St and W Santa Clara St', '', 'San Jose','CA','95113',37.336141,-121.890666);
123
- INSERT INTO Address VALUES('15', 'Bay Street and Columbus Ave ', '', 'San Francisco','CA','94133',37.805328,-122.416882);
124
- INSERT INTO Address VALUES('16', 'El Camino Real and Scott Blvd', '', 'Santa Clara','CA','95050',37.352141 ,-121.959569);
125
- INSERT INTO Address VALUES('17', 'Millbrae Ave and Willow Ave', '', 'Millbrae ','CA','94030',37.596635,-122.391083);
126
- INSERT INTO Address VALUES('18', 'Leavesley Rd and Monterey Rd', '', 'Gilroy','CA','95020',37.019447,-121.574953);
127
- INSERT INTO Address VALUES('19', 'S Main St and Serra Way', '', 'Milpitas','CA','95035',37.428112,-121.906505);
128
- INSERT INTO Address VALUES('20', '24th St and Dolores St', '', 'San Francisco','CA','94114',37.75183,-122.424982);
129
- INSERT INTO Address VALUES('21', 'Great Mall Pky and S Main St', '', 'Milpitas','CA','95035',37.414722,-121.902085);
130
- INSERT INTO Address VALUES('22', 'Grant Rd and South Dr ', '', 'Mountain view','CA','94040',37.366941,-122.078073);
131
- INSERT INTO Address VALUES('23', '25th St and Dolores St', '', 'San Francisco','CA','94114',37.75013,-122.424782);
132
- INSERT INTO Address VALUES('24', 'Ellis St and National Ave', '', 'Mountain view','CA','94043',37.40094,-122.052272);
133
- INSERT INTO Address VALUES('25', '1st St and Market St ', '', 'San Francisco','CA','94105',37.791028,-122.399082);
134
- INSERT INTO Address VALUES('26', 'San Antonio Rd and Middlefield Rd', '', 'Palo Alto','CA','94303',37.416239,-122.103474);
135
- INSERT INTO Address VALUES('27', '20th St and Dolores St', '', 'San Francisco','CA','94114',37.75823,-122.425582);
136
- INSERT INTO Address VALUES('28', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
137
- INSERT INTO Address VALUES('29', 'Dolores St and San Jose Ave', '', 'San Francisco','CA','94110',37.74023,-122.423782);
138
- INSERT INTO Address VALUES('30', 'Leavesley Rd and Monterey Rd', '', 'Gilroy','CA','95020',37.019447,-121.574953);
139
- INSERT INTO Address VALUES('31', 'Palm Dr and Arboretum Rd', '', 'Stanford','CA','94305',37.437838,-122.166975);
140
- INSERT INTO Address VALUES('32', 'Millbrae Ave and Willow Ave', '', 'Millbrae ','CA','94030',37.596635,-122.391083);
141
- INSERT INTO Address VALUES('33', 'Cesar Chavez St and Sanchez', '', 'San Francisco','CA','94131',37.74753,-122.428982);
142
- INSERT INTO Address VALUES('34', 'University Ave and Middlefield Rd', '', 'Palo Alto','CA','94301',37.450638,-122.156975);
143
- INSERT INTO Address VALUES('35', 'Bay Street and Columbus Ave ', '', 'San Francisco','CA','94133',37.805328,-122.416882);
144
- INSERT INTO Address VALUES('36', 'Telegraph Ave and Bancroft Way', '', 'Berkeley','CA','94704',37.868825,-122.25978);
145
- INSERT INTO Address VALUES('37', '1st St and Market St ', '', 'San Francisco','CA','94105',37.791028,-122.399082);
146
- INSERT INTO Address VALUES('38', 'San Antonio Rd and Middlefield Rd', '', 'Palo Alto','CA','94303',37.416239,-122.103474);
147
- INSERT INTO Address VALUES('39', '20th St and Dolores St', '', 'San Francisco','CA','94114',37.75823,-122.425582);
148
- INSERT INTO Address VALUES('40', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
149
- INSERT INTO Address VALUES('41', 'Dolores St and San Jose Ave', '', 'San Francisco','CA','94110',37.74023,-122.423782);
150
- INSERT INTO Address VALUES('42', '4th St and Howard St', '', 'San Francisco','CA','94103',37.783229,-122.402582);
151
- INSERT INTO Address VALUES('43', 'Palm Dr and Arboretum Rd', '', 'Stanford','CA','94305',37.437838,-122.166975);
152
- INSERT INTO Address VALUES('44', 'Campbell St and Riverside Ave', '', 'Santa Cruz','CA','95060',36.96985,-122.019473);
153
- INSERT INTO Address VALUES('45', 'Cesar Chavez St and Sanchez', '', 'San Francisco','CA','94131',37.74753,-122.428982);
154
- INSERT INTO Address VALUES('46', 'University Ave and Middlefield Rd', '', 'Palo Alto','CA','94301',37.450638,-122.156975);
155
- INSERT INTO Address VALUES('47', 'W el Camino Real and S Mary Ave', '', 'Sunnyvale','CA','94087',37.371641,-122.048772);
156
- INSERT INTO Address VALUES('48', 'Telegraph Ave and Bancroft Way', '', 'Berkeley','CA','94704',37.868825,-122.25978);
157
- INSERT INTO Address VALUES('49', '1st St and Market St ', '', 'San Francisco','CA','94105',37.791028,-122.399082);
158
- INSERT INTO Address VALUES('50', 'San Antonio Rd and Middlefield Rd', '', 'Palo Alto','CA','94303',37.416239,-122.103474);
159
- INSERT INTO Address VALUES('51', '20th St and Dolores St', '', 'San Francisco','CA','94114',37.75823,-122.425582);
160
- INSERT INTO Address VALUES('52', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
161
- INSERT INTO Address VALUES('53', 'Dolores St and San Jose Ave', '', 'San Francisco','CA','94110',37.74023,-122.423782);
162
- INSERT INTO Address VALUES('54', '4th St and Howard St', '', 'San Francisco','CA','94103',37.783229,-122.402582);
163
- INSERT INTO Address VALUES('55', 'Palm Dr and Arboretum Rd', '', 'Stanford','CA','94305',37.437838,-122.166975);
164
- INSERT INTO Address VALUES('56', 'W el Camino Real and S Mary Ave', '', 'Sunnyvale','CA','94087',37.371641,-122.048772);
165
- INSERT INTO Address VALUES('57', 'Campbell St and Riverside Ave', '', 'Santa Cruz','CA','95060',36.96985,-122.019473);
166
- INSERT INTO Address VALUES('58', 'University Ave and Middlefield Rd', '', 'Palo Alto','CA','94301',37.450638,-122.156975);
167
- INSERT INTO Address VALUES('59', 'Bay Street and Columbus Ave ', '', 'San Francisco','CA','94133',37.805328,-122.416882);
168
- INSERT INTO Address VALUES('60', 'Telegraph Ave and Bancroft Way', '', 'Berkeley','CA','94704',37.868825,-122.25978);
169
- INSERT INTO Address VALUES('61', 'San Antonio Rd and Middlefield Rd', '', 'Palo Alto','CA','94303',37.416239,-122.103474);
170
- INSERT INTO Address VALUES('62', '20th St and Dolores St', '', 'San Francisco','CA','94114',37.75823,-122.425582);
171
- INSERT INTO Address VALUES('63', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
172
- INSERT INTO Address VALUES('64', 'Dolores St and San Jose Ave', '', 'San Francisco','CA','94110',37.74023,-122.423782);
173
- INSERT INTO Address VALUES('65', 'W el Camino Real and S Mary Ave', '', 'Sunnyvale','CA','94087',37.371641,-122.048772);
174
- INSERT INTO Address VALUES('66', 'Palm Dr and Arboretum Rd', '', 'Stanford','CA','94305',37.437838,-122.166975);
175
- INSERT INTO Address VALUES('67', 'Millbrae Ave and Willow Ave', '', 'Millbrae ','CA','94030',37.596635,-122.391083);
176
- INSERT INTO Address VALUES('68', 'Cesar Chavez St and Sanchez', '', 'San Francisco','CA','94131',37.74753,-122.428982);
177
- INSERT INTO Address VALUES('69', 'University Ave and Middlefield Rd', '', 'Palo Alto','CA','94301',37.450638,-122.156975);
178
- INSERT INTO Address VALUES('70', 'Bay Street and Columbus Ave ', '', 'San Francisco','CA','94133',37.805328,-122.416882);
179
- INSERT INTO Address VALUES('71', 'Leavesley Rd and Monterey Rd', '', 'Gilroy','CA','95020',37.019447,-121.574953);
180
- INSERT INTO Address VALUES('72', 'Campbell St and Riverside Ave', '', 'Santa Cruz','CA','95060',36.96985,-122.019473);
181
- INSERT INTO Address VALUES('73', '20th St and Dolores St', '', 'San Francisco','CA','94114',37.75823,-122.425582);
182
- INSERT INTO Address VALUES('74', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
183
- INSERT INTO Address VALUES('75', 'Dolores St and San Jose Ave', '', 'San Francisco','CA','94110',37.74023,-122.423782);
184
- INSERT INTO Address VALUES('76', '4th St and Howard St', '', 'San Francisco','CA','94103',37.783229,-122.402582);
185
- INSERT INTO Address VALUES('77', 'Palm Dr and Arboretum Rd', '', 'Stanford','CA','94305',37.437838,-122.166975);
186
- INSERT INTO Address VALUES('78', 'Millbrae Ave and Willow Ave', '', 'Millbrae ','CA','94030',37.596635,-122.391083);
187
- INSERT INTO Address VALUES('79', 'Campbell St and Riverside Ave', '', 'Santa Cruz','CA','95060',36.96985,-122.019473);
188
- INSERT INTO Address VALUES('80', 'University Ave and Middlefield Rd', '', 'Palo Alto','CA','94301',37.450638,-122.156975);
189
- INSERT INTO Address VALUES('81', 'Grant Rd and South Dr ', '', 'Mountain view','CA','94040',37.366941,-122.078073);
190
- INSERT INTO Address VALUES('82', 'Telegraph Ave and Bancroft Way', '', 'Berkeley','CA','94704',37.868825,-122.25978);
191
- INSERT INTO Address VALUES('83', 'San Antonio Rd and Middlefield Rd', '', 'Palo Alto','CA','94303',37.416239,-122.103474);
192
- INSERT INTO Address VALUES('84', '20th St and Dolores St', '', 'San Francisco','CA','94114',37.75823,-122.425582);
193
- INSERT INTO Address VALUES('85', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
194
- INSERT INTO Address VALUES('86', 'Dolores St and San Jose Ave', '', 'San Francisco','CA','94110',37.74023,-122.423782);
195
- INSERT INTO Address VALUES('87', '4th St and Howard St', '', 'San Francisco','CA','94103',37.783229,-122.402582);
196
- INSERT INTO Address VALUES('88', 'Palm Dr and Arboretum Rd', '', 'Stanford','CA','94305',37.437838,-122.166975);
197
- INSERT INTO Address VALUES('89', 'Millbrae Ave and Willow Ave', '', 'Millbrae ','CA','94030',37.596635,-122.391083);
198
- INSERT INTO Address VALUES('90', 'Paseo Padre Pky and Fremont Blvd', '', 'Fremont','CA','94555',37.575035,-122.041273);
199
- INSERT INTO Address VALUES('91', 'University Ave and Middlefield Rd', '', 'Palo Alto','CA','94301',37.450638,-122.156975);
200
- INSERT INTO Address VALUES('92', 'El Camino Real and Scott Blvd', '', 'Santa Clara','CA','95050',37.352141 ,-121.959569);
201
- INSERT INTO Address VALUES('93', 'Telegraph Ave and Bancroft Way', '', 'Berkeley','CA','94704',37.868825,-122.25978);
202
- INSERT INTO Address VALUES('94', 'San Antonio Rd and Middlefield Rd', '', 'Palo Alto','CA','94303',37.416239,-122.103474);
203
- INSERT INTO Address VALUES('95', '20th St and Dolores St', '', 'San Francisco','CA','94114',37.75823,-122.425582);
204
- INSERT INTO Address VALUES('96', 'River Oaks Pky and Village Center Dr', '', 'San Jose','CA','95134',37.398259,-121.922367);
205
- INSERT INTO Address VALUES('97', 'Dolores St and San Jose Ave', '', 'San Francisco','CA','94110',37.74023,-122.423782);
206
- INSERT INTO Address VALUES('98', 'Campbell St and Riverside Ave', '', 'Santa Cruz','CA','95060',36.96985,-122.019473);
207
- INSERT INTO Address VALUES('99', 'Palm Dr and Arboretum Rd', '', 'Stanford','CA','94305',37.437838,-122.166975);
208
- INSERT INTO Address VALUES('100', 'Leavesley Rd and Monterey Rd', '', 'Gilroy','CA','95020',37.019447,-121.574953);
209
- INSERT INTO Address VALUES('101', 'Cesar Chavez St and Sanchez', '', 'San Francisco','CA','94131',37.74753,-122.428982);
210
- INSERT INTO Address VALUES('102', 'University Ave and Middlefield Rd', '', 'Palo Alto','CA','94301',37.450638,-122.156975);
211
-
212
- INSERT INTO SellerContactInfo VALUES('1', 'Brydon', 'Sean', 'abc@abc.xyz');
213
- INSERT INTO SellerContactInfo VALUES('2', 'Singh', 'Inderjeet', 'abc@abc.xyz');
214
- INSERT INTO SellerContactInfo VALUES('3', 'Basler', 'Mark', 'abc@abc.xyz');
215
- INSERT INTO SellerContactInfo VALUES('4', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
216
- INSERT INTO SellerContactInfo VALUES('5', 'Kangath', 'Smitha', 'abc@abc.xyz');
217
- INSERT INTO SellerContactInfo VALUES('6', 'Freeman', 'Larry', 'abc@abc.xyz');
218
- INSERT INTO SellerContactInfo VALUES('7', 'Kaul', 'Jeet', 'abc@abc.xyz');
219
- INSERT INTO SellerContactInfo VALUES('8', 'Burns', 'Ed', 'abc@abc.xyz');
220
- INSERT INTO SellerContactInfo VALUES('9', 'McClanahan', 'Craig', 'abc@abc.xyz');
221
- INSERT INTO SellerContactInfo VALUES('10', 'Murray', 'Greg', 'abc@abc.xyz');
222
- INSERT INTO SellerContactInfo VALUES('11', 'Brydon', 'Sean', 'abc@abc.xyz');
223
- INSERT INTO SellerContactInfo VALUES('12', 'Singh', 'Inderjeet', 'abc@abc.xyz');
224
- INSERT INTO SellerContactInfo VALUES('13', 'Basler', 'Mark', 'abc@abc.xyz');
225
- INSERT INTO SellerContactInfo VALUES('14', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
226
- INSERT INTO SellerContactInfo VALUES('15', 'Kangath', 'Smitha', 'abc@abc.xyz');
227
- INSERT INTO SellerContactInfo VALUES('16', 'Freeman', 'Larry', 'abc@abc.xyz');
228
- INSERT INTO SellerContactInfo VALUES('17', 'Kaul', 'Jeet', 'abc@abc.xyz');
229
- INSERT INTO SellerContactInfo VALUES('18', 'Burns', 'Ed', 'abc@abc.xyz');
230
- INSERT INTO SellerContactInfo VALUES('19', 'McClanahan', 'Craig', 'abc@abc.xyz');
231
- INSERT INTO SellerContactInfo VALUES('20', 'Murray', 'Greg', 'abc@abc.xyz');
232
- INSERT INTO SellerContactInfo VALUES('21', 'Brydon', 'Sean', 'abc@abc.xyz');
233
- INSERT INTO SellerContactInfo VALUES('22', 'Singh', 'Inderjeet', 'abc@abc.xyz');
234
- INSERT INTO SellerContactInfo VALUES('23', 'Basler', 'Mark', 'abc@abc.xyz');
235
- INSERT INTO SellerContactInfo VALUES('24', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
236
- INSERT INTO SellerContactInfo VALUES('25', 'Kangath', 'Smitha', 'abc@abc.xyz');
237
- INSERT INTO SellerContactInfo VALUES('26', 'Freeman', 'Larry', 'abc@abc.xyz');
238
- INSERT INTO SellerContactInfo VALUES('27', 'Kaul', 'Jeet', 'abc@abc.xyz');
239
- INSERT INTO SellerContactInfo VALUES('28', 'Burns', 'Ed', 'abc@abc.xyz');
240
- INSERT INTO SellerContactInfo VALUES('29', 'McClanahan', 'Craig', 'abc@abc.xyz');
241
- INSERT INTO SellerContactInfo VALUES('30', 'Murray', 'Greg', 'abc@abc.xyz');
242
- INSERT INTO SellerContactInfo VALUES('31', 'Brydon', 'Sean', 'abc@abc.xyz');
243
- INSERT INTO SellerContactInfo VALUES('32', 'Singh', 'Inderjeet', 'abc@abc.xyz');
244
- INSERT INTO SellerContactInfo VALUES('33', 'Basler', 'Mark', 'abc@abc.xyz');
245
- INSERT INTO SellerContactInfo VALUES('34', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
246
- INSERT INTO SellerContactInfo VALUES('35', 'Kangath', 'Smitha', 'abc@abc.xyz');
247
- INSERT INTO SellerContactInfo VALUES('36', 'Freeman', 'Larry', 'abc@abc.xyz');
248
- INSERT INTO SellerContactInfo VALUES('37', 'Kaul', 'Jeet', 'abc@abc.xyz');
249
- INSERT INTO SellerContactInfo VALUES('38', 'Burns', 'Ed', 'abc@abc.xyz');
250
- INSERT INTO SellerContactInfo VALUES('39', 'McClanahan', 'Craig', 'abc@abc.xyz');
251
- INSERT INTO SellerContactInfo VALUES('40', 'Murray', 'Greg', 'abc@abc.xyz');
252
- INSERT INTO SellerContactInfo VALUES('41', 'Brydon', 'Sean', 'abc@abc.xyz');
253
- INSERT INTO SellerContactInfo VALUES('42', 'Singh', 'Inderjeet', 'abc@abc.xyz');
254
- INSERT INTO SellerContactInfo VALUES('43', 'Basler', 'Mark', 'abc@abc.xyz');
255
- INSERT INTO SellerContactInfo VALUES('44', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
256
- INSERT INTO SellerContactInfo VALUES('45', 'Kangath', 'Smitha', 'abc@abc.xyz');
257
- INSERT INTO SellerContactInfo VALUES('46', 'Freeman', 'Larry', 'abc@abc.xyz');
258
- INSERT INTO SellerContactInfo VALUES('47', 'Kaul', 'Jeet', 'abc@abc.xyz');
259
- INSERT INTO SellerContactInfo VALUES('48', 'Burns', 'Ed', 'abc@abc.xyz');
260
- INSERT INTO SellerContactInfo VALUES('49', 'McClanahan', 'Craig', 'abc@abc.xyz');
261
- INSERT INTO SellerContactInfo VALUES('50', 'Murray', 'Greg', 'abc@abc.xyz');
262
- INSERT INTO SellerContactInfo VALUES('51', 'Brydon', 'Sean', 'abc@abc.xyz');
263
- INSERT INTO SellerContactInfo VALUES('52', 'Singh', 'Inderjeet', 'abc@abc.xyz');
264
- INSERT INTO SellerContactInfo VALUES('53', 'Basler', 'Mark', 'abc@abc.xyz');
265
- INSERT INTO SellerContactInfo VALUES('54', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
266
- INSERT INTO SellerContactInfo VALUES('55', 'Kangath', 'Smitha', 'abc@abc.xyz');
267
- INSERT INTO SellerContactInfo VALUES('56', 'Freeman', 'Larry', 'abc@abc.xyz');
268
- INSERT INTO SellerContactInfo VALUES('57', 'Kaul', 'Jeet', 'abc@abc.xyz');
269
- INSERT INTO SellerContactInfo VALUES('58', 'Burns', 'Ed', 'abc@abc.xyz');
270
- INSERT INTO SellerContactInfo VALUES('59', 'McClanahan', 'Craig', 'abc@abc.xyz');
271
- INSERT INTO SellerContactInfo VALUES('60', 'Murray', 'Greg', 'abc@abc.xyz');
272
- INSERT INTO SellerContactInfo VALUES('61', 'Brydon', 'Sean', 'abc@abc.xyz');
273
- INSERT INTO SellerContactInfo VALUES('62', 'Singh', 'Inderjeet', 'abc@abc.xyz');
274
- INSERT INTO SellerContactInfo VALUES('63', 'Basler', 'Mark', 'abc@abc.xyz');
275
- INSERT INTO SellerContactInfo VALUES('64', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
276
- INSERT INTO SellerContactInfo VALUES('65', 'Kangath', 'Smitha', 'abc@abc.xyz');
277
- INSERT INTO SellerContactInfo VALUES('66', 'Freeman', 'Larry', 'abc@abc.xyz');
278
- INSERT INTO SellerContactInfo VALUES('67', 'Kaul', 'Jeet', 'abc@abc.xyz');
279
- INSERT INTO SellerContactInfo VALUES('68', 'Burns', 'Ed', 'abc@abc.xyz');
280
- INSERT INTO SellerContactInfo VALUES('69', 'McClanahan', 'Craig', 'abc@abc.xyz');
281
- INSERT INTO SellerContactInfo VALUES('70', 'Murray', 'Greg', 'abc@abc.xyz');
282
- INSERT INTO SellerContactInfo VALUES('71', 'Brydon', 'Sean', 'abc@abc.xyz');
283
- INSERT INTO SellerContactInfo VALUES('72', 'Singh', 'Inderjeet', 'abc@abc.xyz');
284
- INSERT INTO SellerContactInfo VALUES('73', 'Basler', 'Mark', 'abc@abc.xyz');
285
- INSERT INTO SellerContactInfo VALUES('74', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
286
- INSERT INTO SellerContactInfo VALUES('75', 'Kangath', 'Smitha', 'abc@abc.xyz');
287
- INSERT INTO SellerContactInfo VALUES('76', 'Freeman', 'Larry', 'abc@abc.xyz');
288
- INSERT INTO SellerContactInfo VALUES('77', 'Kaul', 'Jeet', 'abc@abc.xyz');
289
- INSERT INTO SellerContactInfo VALUES('78', 'Burns', 'Ed', 'abc@abc.xyz');
290
- INSERT INTO SellerContactInfo VALUES('79', 'McClanahan', 'Craig', 'abc@abc.xyz');
291
- INSERT INTO SellerContactInfo VALUES('80', 'Murray', 'Greg', 'abc@abc.xyz');
292
- INSERT INTO SellerContactInfo VALUES('81', 'Brydon', 'Sean', 'abc@abc.xyz');
293
- INSERT INTO SellerContactInfo VALUES('82', 'Singh', 'Inderjeet', 'abc@abc.xyz');
294
- INSERT INTO SellerContactInfo VALUES('83', 'Basler', 'Mark', 'abc@abc.xyz');
295
- INSERT INTO SellerContactInfo VALUES('84', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
296
- INSERT INTO SellerContactInfo VALUES('85', 'Kangath', 'Smitha', 'abc@abc.xyz');
297
- INSERT INTO SellerContactInfo VALUES('86', 'Freeman', 'Larry', 'abc@abc.xyz');
298
- INSERT INTO SellerContactInfo VALUES('87', 'Kaul', 'Jeet', 'abc@abc.xyz');
299
- INSERT INTO SellerContactInfo VALUES('88', 'Burns', 'Ed', 'abc@abc.xyz');
300
- INSERT INTO SellerContactInfo VALUES('89', 'McClanahan', 'Craig', 'abc@abc.xyz');
301
- INSERT INTO SellerContactInfo VALUES('90', 'Murray', 'Greg', 'abc@abc.xyz');
302
- INSERT INTO SellerContactInfo VALUES('91', 'Brydon', 'Sean', 'abc@abc.xyz');
303
- INSERT INTO SellerContactInfo VALUES('92', 'Singh', 'Inderjeet', 'abc@abc.xyz');
304
- INSERT INTO SellerContactInfo VALUES('93', 'Basler', 'Mark', 'abc@abc.xyz');
305
- INSERT INTO SellerContactInfo VALUES('94', 'Yoshida', 'Yutaka', 'abc@abc.xyz');
306
- INSERT INTO SellerContactInfo VALUES('95', 'Kangath', 'Smitha', 'abc@abc.xyz');
307
- INSERT INTO SellerContactInfo VALUES('96', 'Freeman', 'Larry', 'abc@abc.xyz');
308
- INSERT INTO SellerContactInfo VALUES('97', 'Kaul', 'Jeet', 'abc@abc.xyz');
309
- INSERT INTO SellerContactInfo VALUES('98', 'Burns', 'Ed', 'abc@abc.xyz');
310
- INSERT INTO SellerContactInfo VALUES('99', 'McClanahan', 'Craig', 'abc@abc.xyz');
311
- INSERT INTO SellerContactInfo VALUES('100', 'Murray', 'Greg', 'abc@abc.xyz');
312
- INSERT INTO SellerContactInfo VALUES('101', 'Brydon', 'Sean', 'abc@abc.xyz');
313
- INSERT INTO SellerContactInfo VALUES('102', 'Singh', 'Inderjeet', 'abc@abc.xyz');
314
-
315
- INSERT INTO item VALUES('1', 'feline01', 'Friendly Cat', 'This black and white colored cat is super friendly. Anyone passing by your front yard will find him puring at their feet and trying to make a new friend. His name is Anthony, but I call him Ant as a nickname since he loves to eat ants and other insects.', 'images/anthony.jpg','images/anthony-s.jpg', 307.10,'1','1', 15, 3, 0);
316
- INSERT INTO item VALUES('2', 'feline01', 'Fluffy Cat', 'A great pet for a hair stylist! Have fun combing Bailey''s silver mane. Maybe trim his whiskers? He is very patient and loves to be pampered.', 'images/bailey.jpg','images/bailey-s.jpg', 307,'2','2', 15, 5, 0);
317
- INSERT INTO item VALUES('3', 'feline02', 'Sneaky Cat', 'My cat is so sneaky. He is so curious that he just has to poke his nose into everything going on in the house. Everytime I turn around, BAM, he is in the room peaking at what I am doing. Nothing escapes his keen eye. He should be a spy in the CIA!', 'images/bob.jpg','images/bob-s.jpg', 307.20,'3','3', 15, 7, 0);
318
- INSERT INTO item VALUES('4', 'feline02', 'Lazy Cat', 'A great pet to lounge on the sofa with. If you want a friend to watch TV with, this is the cat for you. Plus, she wont even ask for the remote! Really, could you ask for a better friend to lounge with?', 'images/chantelle.jpg','images/chantelle-s.jpg', 307.30,'4','4', 15, 5, 0);
319
- INSERT INTO item VALUES('5', 'feline01', 'Old Cat', 'A great old pet retired from duty in the circus. This fully-trained tiger is looking for a place to retire. Loves to roam free and loves to eat other animals.', 'images/charlie.jpg','images/charlie-s.jpg', 307,'5','5', 15, 5, 0);
320
- INSERT INTO item VALUES('6', 'feline02', 'Young Female cat', 'A great young pet to chase around. Loves to play with a ball of string. Bring some instant energy into your home.', 'images/elkie.jpg','images/elkie-s.jpg', 307.40,'6','6', 15, 5, 0);
321
- INSERT INTO item VALUES('7', 'feline01', 'Playful Female Cat', 'A needy pet. This cat refuses to grow up. Do you like playful spirits? I need lots of attention. Please do not leave me alone, not even for a minute.', 'images/faith.jpg','images/faith-s.jpg', 307,'7','7', 15, 5, 0);
322
- INSERT INTO item VALUES('8', 'feline01', 'White Fluffy Cat', 'This fluffy white cat looks like a snowball. Plus, she likes playing outside in the snow and it looks really cool to see this snowball cat run around on the ski slopes. I hope you have white carpet as this cat sheds lots of hair.', 'images/gaetano.jpg','images/gaetano-s.jpg', 307.50,'8','8', 15, 15, 0);
323
- INSERT INTO item VALUES('9', 'feline02', 'Tiger Stripe Cat', 'This little tiger thinks it has big teeth. A great wild pet for an adventurous person. May eat your other pets so be careful- just kidding. This little tiger is affectionate.', 'images/harmony.jpg','images/harmony-s.jpg', 307,'9','9', 15, 3, 0);
324
- INSERT INTO item VALUES('10', 'feline02', 'Alley Cat', 'Meow Meow in the back alley cat fights! This cat keeps the racoons away, but still has class.', 'images/katzen.jpg','images/katzen-s.jpg', 307.60,'10','10', 15, 5, 0);
325
- INSERT INTO item VALUES('11', 'feline02', 'Speedy Cat', 'Fastest and coolest cat in town. If you always wanted to own a cheetah, this cat is even faster and better looking. No dog could ever catch this bolt of lightening.', 'images/mario.jpg','images/mario-s.jpg', 307,'11','11', 15, 10, 0);
326
- INSERT INTO item VALUES('12', 'feline01', 'Stylish Cat', 'A high maintenance cat for an owner with time. This cat needs pampering: comb it hair, brush its teeth, wash its fur, paint its claws. For all you debutantes, let the world know you have arrived in style with this snooty cat in your purse!', 'images/mimi.jpg','images/mimi-s.jpg', 307.70,'12','12', 15, 4, 0);
327
- INSERT INTO item VALUES('13', 'feline01', 'Smelly Cat', 'A great pet with its own song to sing with your fiends. "Smelly cat, Smelly cat ..." Need an excuse for that funky odor in your house? Smelly cat is the answer.', 'images/monique.jpg','images/monique-s.jpg', 307.80,'13','13', 15, 8, 0);
328
- INSERT INTO item VALUES('14', 'feline01', 'Saber Cat', 'A great watch pet. Want to keep your roommates from stealing the beer from your refrigerator? This big-toothed crazy cat is better than a watchdog. Just place him on top of the refrigerator and watch him pounce when so-called friends try to sneak a beer. This cat is great fun at parties.', 'images/olie.jpg','images/olie-s.jpg', 307.90,'14','14', 15, 3, 0);
329
- INSERT INTO item VALUES('15', 'feline01', 'Sophisticated Cat', 'This cat is from Paris. It has a very distinguished history and is looking for a castle to play in. This sophisticated cat has class and taste. No chasing on string, no catnip habits. Only the habits of royalty in this cats blood.', 'images/paris.jpg','images/paris-s.jpg', 307,'15','15', 15, 4, 0);
330
- INSERT INTO item VALUES('16', 'feline01', 'Princess cat', 'Just beauty and elegance. She will charm you from the moment she enters the room.', 'images/princess.jpg','images/princess-s.jpg', 307,'16','16', 15, 5, 0);
331
- INSERT INTO item VALUES('17', 'feline02', 'Lazy cat', 'Wow! This cat is cool. It has a beautiful tan coat. I wish I could get a sun tan of that color.', 'images/simba.jpg','images/simba-s.jpg', 307,'17','17', 15, 3, 0);
332
- INSERT INTO item VALUES('18', 'feline02', 'Scapper male cat', 'A scappy cat that likes to cause trouble. If you are looking for a challenge to your cat training skills, this scapper is the test!', 'images/thaicat.jpg','images/thaicat-s.jpg', 307,'18','18', 15, 5, 0);
333
- INSERT INTO item VALUES('19', 'feline01', 'Lazy cat', 'Buy me please. I love to sleep.', 'images/cat1.gif','images/cat1.gif', 307,'19','19', 15, 6, 0);
334
- INSERT INTO item VALUES('20', 'feline01', 'Old Cat', 'A great old pet retired from duty in the circus. This fully-trained tiger is looking for a place to retire. Loves to roam free and loves to eat other animals.', 'images/cat2.gif','images/cat2.gif', 200,'20','20', 15, 3, 0);
335
- INSERT INTO item VALUES('21', 'feline01', 'Young Cat', 'A great young pet to chase around. Loves to play with a ball of string.', 'images/cat3.gif','images/cat3.gif', 350,'21','21', 15, 3, 0);
336
- INSERT INTO item VALUES('22', 'feline01', 'Scrappy Cat', 'A real trouble-maker in the neighborhood. Looking for some T.L.C', 'images/cat4.gif','images/cat4.gif', 417,'22','22', 15, 9, 0);
337
- INSERT INTO item VALUES('23', 'feline01', 'Alley Cat', 'Loves to play in the alley outside my apartment, but looking for a warmer and safer place to spend its nights.', 'images/cat5.gif','images/cat5.gif', 307, '23','23', 15, 5, 0);
338
- INSERT INTO item VALUES('24', 'feline02', 'Playful Cat', 'Come play with me. I am looking for fun.', 'images/cat7.gif','images/cat7.gif', 190, '24','24', 15, 3, 0);
339
- INSERT INTO item VALUES('25', 'feline02', 'Long Haired Cat', 'Buy this fancy cat.', 'images/cat8.gif', 'images/cat8.gif', 199,'25','25', 15, 8, 0);
340
- INSERT INTO item VALUES('26', 'feline02', 'Fresh Cat', 'Just need a nice bath and i will be fresh as a kitten.', 'images/cat9.gif','images/cat9.gif', 303,'26','26', 15, 14, 0);
341
- INSERT INTO item VALUES('27', 'feline02', 'Wild Cat', 'This wild tiger loves to play.', 'images/cat10.gif', 'images/cat10.gif', 527,'27','27', 15, 14, 0);
342
- INSERT INTO item VALUES('28', 'feline02', 'Saber Cat', 'Buy me', 'images/cat11.gif', 'images/cat11.gif', 237,'28','28', 15, 5, 0);
343
- INSERT INTO item VALUES('29', 'feline02', 'Snappy Cat', 'Buy Me.', 'images/cat12.gif', 'images/cat12.gif', 337,'29','29', 15, 5, 0);
344
-
345
- INSERT INTO item VALUES('100', 'canine02', 'Pretty Dog', 'Just like a statue or work of art she is so pretty. If you are an artist this dog is a perfect subject for your portraits. She is such a poser! She belongs in Hollywood with her own star on the wlak of fame.', 'images/biscuit.jpg','images/biscuit-s.jpg', 100,'30','30', 15, 3, 0);
346
- INSERT INTO item VALUES('101', 'canine01', 'Beach Dog', 'A great dog to lay in the Sun with, chases a frisbee like a champ, and can swim like a shark. Heck, he can ride a surfboard if you dont mind sharing.', 'images/harrison.jpg','images/harrison-s.jpg', 250,'31','31', 15, 5, 0);
347
- INSERT INTO item VALUES('102', 'canine01', 'Scrapper Dog', 'This scrapy woofer needs some clean up and some lessons. Help him out and take him home.', 'images/honey.jpg','images/honey-s.jpg', 257,'32','32', 20, 5, 0);
348
- INSERT INTO item VALUES('103', 'canine01', 'Intense Worker Dog', 'My dog is full on energy and intensity. He needs a constant challenge to keep him happy. Great for a farm or house in the country. Bring him to work with you.', 'images/hunter.jpg','images/hunter-s.jpg', 500,'33','33', 15, 5, 0);
349
- INSERT INTO item VALUES('104', 'canine02', 'Old Dog', 'This old geezer just wants to sleep at your feet. Slip him some food under the table and watch him wag his tail. Great dog for someone who retired before the dot-com bubble burst. A partner to loaf with.', 'images/jack.jpg','images/jack-s.jpg', 215,'34','34', 15, 7, 0);
350
- INSERT INTO item VALUES('105', 'canine01', 'Female Huskie', 'Live in a cold area? This dog has her own winter jacket. She loves the snow. She even loves to eat the snow. One time, I saw her eat a whole snowman ...it was crazy fun to watch.', 'images/lady.jpg','images/lady-s.jpg', 2000,'35','35', 15, 5, 0);
351
- INSERT INTO item VALUES('106', 'canine01', 'Rasta Dog', 'Hey mon! Want a dog to chill with. This dog wants the rasta life. You can see it in her eyes. The ocean, the sunshine, all you need is this dog to be complete.', 'images/maggie.jpg','images/maggie-s.jpg', 400,'36','36', 15, 3, 0);
352
- INSERT INTO item VALUES('107', 'canine01', 'Tough Dog', 'Need a guard dog? An excellent guard dog that would love to sit next to you and watch reruns of police shows on TV. And loves kids. Its like having a trusted babysitter to watch your kids and home.', 'images/marianna.jpg','images/marianna-s.jpg', 500,'37','37', 15, 7, 0);
353
- INSERT INTO item VALUES('108', 'canine02', 'Sad Puppy', 'Help to put a smile on the face of this puppy. What? You did not know dogs could smile? Well, see what happens when you drop some steak on the floor!', 'images/puppup.jpg','images/puppup-s.jpg', 99,'38','38', 15, 6, 0);
354
- INSERT INTO item VALUES('109', 'canine01', 'Speedy Dog', 'A great runner for a fast owner. This is the fastest dog I have ever seen. Its naturally fast and does not take steroids to improve its performance.', 'images/rita.jpg','images/rita-s.jpg', 25,'39','39', 15, 9, 0);
355
- INSERT INTO item VALUES('110', 'canine02', 'Young Dog', 'Ready to play! This young dog is eager to learn new tricks. Bring me home.', 'images/sabrina.jpg','images/sabrina-s.jpg', 79,'40','40', 15, 5, 0);
356
- INSERT INTO item VALUES('111', 'canine01', 'Sleepy Dog', 'This sleepy dog is perfect for a relaxed home. Plus she just seems to love old music. Anytime she is near an elevator, she just wags her tail waiting to hear that old music.', 'images/thaidog.jpg','images/thaidog-s.jpg', 1000,'41','41', 15, 3, 0);
357
- INSERT INTO item VALUES('112', 'canine01', 'Lazy Dog', 'OK, I can not get this dog to fetch the newspaper. Not even for a doggy biscuit. His name is "Rhymes". He is so lazy, it drives me crazy.', 'images/dog1.gif','images/dog1.gif', 200,'42','42', 15, 9, 0);
358
- INSERT INTO item VALUES('113', 'canine01', 'Old Dog', 'This old geezer just wants to sleep at your feet. Slip him some food under the table and watch him wag his tail.', 'images/dog2.gif','images/dog2.gif', 70,'43','43', 15, 11, 0);
359
- INSERT INTO item VALUES('114', 'canine01', 'Young Dog', 'A great young pet in need of training.', 'images/dog3.gif','images/dog3.gif', 301,'44','44', 15, 5, 0);
360
- INSERT INTO item VALUES('115', 'canine02', 'Scrapper Dog', 'This scrapy woofer needs some clean up and some lessons. Help him out and take him home.', 'images/dog4.gif','images/dog4.gif', 410,'45','45', 15, 5, 0);
361
- INSERT INTO item VALUES('116', 'canine02', 'Grey Hound', 'A great runner for a fast owner. This is the fastest dog I have ever seen. Its naturally fast and does not take steroids to improve its performance.', 'images/dog5.gif', 'images/dog5.gif', 200,'46','46', 15, 3, 0);
362
- INSERT INTO item VALUES('117', 'canine02', 'Beach Dog', 'A great dog to lay in the Sun with, chases a frisbee like a champ, and can swim like a shark. Heck, he can ride a surfboard if you dont mind sharing.', 'images/dog6.gif', 'images/dog6.gif', 200,'47','47', 15, 5, 0);
363
-
364
- INSERT INTO item VALUES('201', 'avian01', 'Sweet Parrot', 'This young little parrot is a great pet. It loves to sit on your finger, so you can where it just like a ring, but so much more exotic than a simple diamond.', 'images/parrot-popcorn.jpg', 'images/parrot-popcorn-s.jpg', 250,'48','48', 15, 5, 0);
365
- INSERT INTO item VALUES('202', 'avian01', 'Female Eclectus Parrot', 'This bird really loves apples. She is a great companion and is quite beautiful. Just look at those colors. The read and blue makes her look like superman! And she can fly too!', 'images/eclectus-female-med.jpg', 'images/eclectus-female-thumb.jpg', 250,'49','49', 15, 5, 0);
366
- INSERT INTO item VALUES('203', 'avian01', 'Galah Parrot', 'My Galah Parrot needs a new home. This new home should have lots of trees and absolutely NO cats. I dont say that because the cats might eat the bird. Rather, I say this Galah needs to stay away from cats so that the cats don''t get hurt. This Galah loves the taste of cat meat.', 'images/galah-parrot-med.jpg', 'images/galah-parrot-thumb.jpg', 900,'50','50', 15, 3, 0);
367
- INSERT INTO item VALUES('204', 'avian02', 'Kookaburra Bird', 'Little Kookaburra for sale. This Kookaburra is tame and likes to just sit to tree branches. A very easy to care for pet.', 'images/kookaburra-med.jpg', 'images/kookaburra-thumb.jpg', 100,'51','51', 15, 5, 0);
368
- INSERT INTO item VALUES('205', 'avian02', 'Orange LoveBird', 'Can this love bird bring you some love? I believe this orange lovebird will bring good luck to your life, and for just a small fee it can be yours.', 'images/lovebird-med.jpg', 'images/lovebird-thumb.jpg', 75,'52','52', 15, 7, 0);
369
- INSERT INTO item VALUES('206', 'avian02', 'Blue Peacock', 'Buy a blue peacock and be the envy of all your neighbors! Guaranteed to turn heads. You will meet everyone in your neighborhood as they come by to see this beauty.', 'images/peacock-blue-med.jpg', 'images/peacock-blue-thumb.jpg', 55,'53','53', 15, 10, 0);
370
- INSERT INTO item VALUES('207', 'avian02', 'Wild Peacock', 'OK, this peacock is wild. And I dont mean that it is not tame. I mean this thing really likes to party! Its the best dancer I have ever seen. Trust me on this.', 'images/peacock-med.jpg', 'images/peacock-thumb.jpg', 65,'54','54', 15, 5, 0);
371
- INSERT INTO item VALUES('208', 'avian02', 'White Peacock', 'My white peacock is like a work of art. Its beauty is refreshing. Consider this an investment, just like buying a painting.', 'images/peakcock-white-med.jpg', 'images/peacock-white-thumb.jpg', 195,'55','55', 15, 3, 0);
372
- INSERT INTO item VALUES('209', 'avian02', 'Rainbow Lorikeet', 'Color! Color! Color! The rainbow lorikeet is a beautiful bird.', 'images/rainbow-lorikeet-med.jpg', 'images/rainbow-lorikeet-thumb.jpg', 299,'56','56', 15, 5, 0);
373
- INSERT INTO item VALUES('210', 'avian02', 'Stone Eagle', 'My eagle is really tough. He is like a rock! In fact he is made of stone. Ok, he may not have a heart and maybe he can not fly, but he needs no food and is so easy to care for. And he has a great temperament, and in fact we have never had any disagreements at all.', 'images/eagle-stone-med.jpg', 'images/eagle-stone-thumb.jpg', 800,'57','57', 15, 10, 0);
374
- INSERT INTO item VALUES('211', 'avian02', 'Red Macaw', 'Look at this majestic beauty! The colors of this macaw are breath-taking. In fact, the colors are so strong you should make sure the furniture in your home matches this bird, as this will be the center-piece of your lovely home.', 'images/macaw.jpg', 'images/macaw-thumb.jpg', 1800,'58','58', 15, 3, 0);
375
- INSERT INTO item VALUES('212', 'avian01', 'Squaky Bird', 'A great noisy bird to drive your parents crazy. If you think playing a stereo loud will test your parents patience, wait till you try this screeching bird. It will fly around and cause a commotion that will have you laughing for days. This is a sure-fire way to get your parents to get you your own apartment.', 'images/CIMG9127.jpg', 'images/CIMG9127-s.jpg', 303,'59','59', 15, 7, 0);
376
- INSERT INTO item VALUES('213', 'avian01', 'Pink Bird', 'A beautiful pink bird. Its not white. Its not red. Its pink.', 'images/CIMG9104.jpg', 'images/CIMG9104-s.jpg', 3003,'60','60', 15, 5, 0);
377
- INSERT INTO item VALUES('214', 'avian02', 'Wild Bird', 'A wild bird. This little rebel thinks its not a house pet, but really it is as tame as a lap dog. It just looks so wild and impresses your friends. Owning this wild bird is cooler than getting a tatoo and hurts less!', 'images/CIMG9109.jpg', 'images/CIMG9109-s.jpg', 527,'61','61', 15, 7, 0);
378
- INSERT INTO item VALUES('215', 'avian02', 'Really Wild Bird', 'A really wild pet. This thing is like a zombie in a horror movie it is so wild. I tried for 2 years to tame this beast and all that happened was I got peck marks all over my hands. Maybe you are a former circus trainer looking for a challenge? If so this birdy needs a home.', 'images/CIMG9109.jpg', 'images/CIMG9109-s.jpg', 527,'62','62', 15, 5, 0);
379
- INSERT INTO item VALUES('216', 'avian02', 'Crazy Bird', 'This crazy bird once flew over the cukoos nest. Some people say that I am crazy. Well, you should meet my bird if you want to meet crazy. This bird is plain looney.', 'images/CIMG9109.jpg', 'images/CIMG9109-s.jpg', 527,'63','63', 15, 3, 0);
380
- INSERT INTO item VALUES('217', 'avian02', 'Smart Bird', 'A great smart pet. Perfect for an engineer. This pet is so smart it can do your coding for you. Just dont tell your boss!', 'images/CIMG9084.jpg','images/CIMG9084-s.jpg', 527,'64','64', 15, 5, 0);
381
- INSERT INTO item VALUES('218', 'avian02', 'Funny Bird', 'A great funny pet. Ever hear the joke about a bird, a hacker, and Java book? Well, this bird can tell it to you. It will make you laugh until you cry. Plus, it can teach you jokes which you can use at parties to impress your friends. That is right sir, this bird will make even you funny!', 'images/CIMG9109.jpg','images/CIMG9109-s.jpg', 527,'65','65', 15, 3, 0);
382
- INSERT INTO item VALUES('219', 'avian02', 'Active Bird', 'A great active pet. This bird once flew a marathon with me and did not get tired. It can fly along while you jog on the trails. Just make sure the hawks do not swoop down and eat it.', 'images/CIMG9088.jpg','images/CIMG9088-s.jpg', 527,'66','66', 15, 10, 0);
383
- INSERT INTO item VALUES('220', 'avian02', 'Curious Bird', 'A great curious birdy. Everything will pique this birds interest. It will investigate every new thing it sees.', 'images/CIMG9138.jpg','images/CIMG9109-s.jpg', 1527,'67','67', 15, 5, 0);
384
- INSERT INTO item VALUES('221', 'avian02', 'Itchy Bird', 'This bird needs some attention. I think he has dandruff in his feathers. He is always scratching so I knick-named him "Itchy". I wish I had claws like that to scratch MY head. Maybe if you are a good trainer, you can teach him to scratch your back nicely with those talons.', 'images/CIMG9129.jpg', 'images/CIMG9129-s.jpg', 200,'68','68', 15, 5, 0);
385
-
386
- INSERT INTO item VALUES('301', 'fish02', 'Spotted JellyFish', 'Buy Me.', 'images/spotted-jellyfish-med.jpg','images/spotted-jellyfish-thumb.jpg', 55,'69','69', 15, 5, 0);
387
- INSERT INTO item VALUES('302', 'fish01', 'Small Sea Nettle JellyFish', 'Buy Me.', 'images/sea-nettle-jellyfish-med.jpg','images/sea-nettle-jellyfish-thumb.jpg', 75,'70','70', 15, 5, 0);
388
- INSERT INTO item VALUES('303', 'fish02', 'RockFish', 'Buy Me.', 'images/rockfish-med.jpg','images/rockfish-thumb.jpg', 125,'71','71', 15, 5, 0);
389
- INSERT INTO item VALUES('304', 'fish02', 'Purple JellyFish', 'Buy Me.', 'images/purple-jellyfish-med.jpg','images/purple-jellyfish-thumb.jpg', 225,'72','72', 15, 5, 0);
390
- INSERT INTO item VALUES('305', 'fish02', 'White Octopus', 'Buy Me.', 'images/octopus-white-med.jpg','images/octopus-white-thumb.jpg', 2000,'73','73', 15, 5, 0);
391
- INSERT INTO item VALUES('306', 'fish02', 'Red Octopus', 'Buy Me.', 'images/octopus-red-med.jpg','images/octopus-red-thumb.jpg', 2000,'74','74', 15, 5, 0);
392
- INSERT INTO item VALUES('307', 'fish02', 'Koi', 'I love this fish. But my new roommate has a cat, and the cat just so does not seem to get along with the fish. At first, I thought the cat was trying to just play with the fish, or maybe learn to swim. And then I remembered that show where they explained that Tuna is the chicken of the sea, but that does not mean its chicken. Not, its fish. And cats love tuna, so then I got scared and realized my fish is in danger. Help me! Buy my little chicken of the sea.', 'images/koi-med.jpg','images/koi-thumb.jpg', 150,'75','75', 15, 5, 0);
393
- INSERT INTO item VALUES('308', 'fish02', 'GlassFish', 'FREE! And open source! The best open source Java EE 5 application server project.', 'images/glassfish-colored-med.jpg','images/glassfish-colored-thumb.jpg', 0,'76','76', 15, 5, 0);
394
- INSERT INTO item VALUES('309', 'fish01', 'CuttleFish', 'This rare and spooky looking fish is the talk of town where I live!', 'images/cuttlefish-med.jpg','images/cuttlefish-thumb.jpg', 900,'77','77', 15, 5, 0);
395
- INSERT INTO item VALUES('310', 'fish01', 'Silver Carp Car', 'You will never believe the fish I caught! This is the ultimate fishing stories... seriously! I pulled this baby out of the forbidden lake behind the nuclear power plant.', 'images/carp-car-med.jpg','images/carp-car-thumb.jpg', 500,'78','78', 15, 5, 0);
396
- INSERT INTO item VALUES('311', 'fish02', 'Moon JellyFish', 'Buy Me.', 'images/moon-jelly-med.jpg','images/moon-jelly-thumb.jpg', 1225,'79','79', 15, 5, 0);
397
- INSERT INTO item VALUES('312', 'fish01', 'Sea Anemone', 'This colorful sea anemone will really brighten up your aquarium.', 'images/sea-anemone-med.jpg','images/sea-anemone-thumb.jpg', 112,'80','80', 15, 5, 0);
398
- INSERT INTO item VALUES('313', 'fish01', 'Gold Fish', 'Perfect for a first fish for a child. This fish is not good in the same tank as some bigger fish as they see this little gold fish as a snack.', 'images/fish2.gif','images/fish2.gif', 2,'81','81', 15, 5, 0);
399
- INSERT INTO item VALUES('314', 'fish01', 'Angel Fish', 'I love this fish. But my new roommate has a cat, and the cat just so does not seem to get along with the fish. At first, I thought the cat was trying to just play with the fish, or maybe learn to swim. And then I remembered that show where they explained that Tuna is the chicken of the sea, but that does not mean its chicken. Not, its fish. And cats love tuna, so then I got scared and realized my fish is in danger. Help me! Buy my little chicken of the sea.', 'images/fish3.gif','images/fish3.gif', 100,'82','82', 15, 5, 0);
400
- INSERT INTO item VALUES('315', 'fish02', 'Striped Tropical', 'This large fish needs plenty of room to swim. Either a big aquarium or your bath tub.', 'images/fish4.gif','images/fish4.gif', 20,'83','83', 15, 5, 0);
401
-
402
- INSERT INTO item VALUES('401', 'reptile02', 'Hawaiian Green Gecko', 'Oloha Wahine! I am from Hawaii. I like to hang out on leaves and just kick back at the beach. You know you can not resist my shiny green skin. So what do you say, want to come visit me?', 'images/hawaiian-lizard-med.jpg','images/hawaiian-lizard-thumb.jpg', 110,'84','84', 15, 5, 0);
403
- INSERT INTO item VALUES('402', 'reptile02', 'African Spurred Tortoise', 'Many people get this as a pet, not realizing it will grow over time to be as large as an ottoman. I must confess, that I am one of those people. Which is why I am now trying to sell this tortoise -it is getting big and starting to scare me. Only homes with lots of room please. ', 'images/african-spurred-tortoise.jpg','images/african-spurred-tortoise-thumb.jpg', 300,'85','85', 15, 3, 0);
404
- INSERT INTO item VALUES('403', 'reptile02', 'Small Box Turtle', 'Cute little turtle for sale. This box turtle is easy to care for and just needs a good home.', 'images/box-turtle.jpg','images/box-turtle-thumb.jpg', 5000,'86','86', 15, 4, 0);
405
- INSERT INTO item VALUES('404', 'reptile02', 'Mexican Redkneed Tarantula', 'No, I am not reptile food! But if you like exotic reptiles, well maybe you would like me too? I promise not to bite you and turn you into spiderman, unless that is what you want. Perhaps you want to climb walls with me?', 'images/mexican-redkneed-tarantula.jpg','images/mexican-redkneed-tarantula-thumb.jpg', 530,'87','87', 15, 5, 0);
406
- INSERT INTO item VALUES('405', 'reptile02', 'Large Box Turtle', 'Turtles are very nice creatures. This large Box Turtle is super fast. Well, compared to other turtles in the neighborhood, this is the Cheetah of turtles.', 'images/box-turtle2.jpg','images/box-turtle2-thumb.jpg', 5000,'88','88', 15, 4, 0);
407
- INSERT INTO item VALUES('406', 'reptile02', 'California Desert Tortoise', 'An endangered tortoise. We are lookng for a zoo to house this beautiful creature. It has a quite nice disposition and will let children pet its shell to discover the mysteries of biology.', 'images/california-desert-tortoise.jpg','images/california-desert-tortoise-thumb.jpg', 599,'89','89', 15, 3, 0);
408
- INSERT INTO item VALUES('407', 'reptile01', 'Florida King Snake', 'This Florida King Snake is really nice. It may look spooky and scare your friends at first, but eventually they will learn to love this slippery snake.', 'images/florida-king-snake.jpg','images/florida-king-snake-thumb.jpg', 150,'90','90', 15, 6, 0);
409
- INSERT INTO item VALUES('408', 'reptile01', 'Leopard Gecko', 'My little leopard gecko needs a new home. If you are interested in purchasing this gecko, I advise you to hurry as it is bound to sell fast.', 'images/leopard-gecko.jpg','images/leopard-gecko-thumb.jpg', 700,'91','91', 15, 3, 0);
410
- INSERT INTO item VALUES('409', 'reptile02', 'Prehensile Tailed Skink', 'Long Tailed Prehensile Tailed Skink for sale. This is the longest tail I have ever seen on a lizard. It goes on for days. Notice the gloves? Be aware of the sharp claws when holding this lizard, even though she is very nice.', 'images/prehensile-tailed-skink.jpg','images/prehensile-tailed-skink-thumb.jpg', 800,'92','92', 15, 6, 0);
411
- INSERT INTO item VALUES('410', 'reptile02', 'African Spurred Tortoise', 'This is not a turtle, it is an African Spurred Tortoise. It grows to get really large. Maybe you have a big yard and can really care for this tortoise? If so, now is your chance to buy it.', 'images/african-spurred-tortoise2.jpg','images/african-spurred-tortoise2-thumb.jpg', 125,'93','93', 15, 5, 0);
412
- INSERT INTO item VALUES('411', 'reptile02', 'Box Turtle', 'This box turtle needs a new home. I am moving and unfortunately must sell all my animals.', 'images/box-turtle3.jpg','images/box-turtle3-thumb.jpg', 900,'94','94', 15, 5, 0);
413
- INSERT INTO item VALUES('412', 'reptile01', 'Prehensile Tailed Skink', 'My lizard is really cool and all my school friends are really impressed when I bring it to show-and-tell. But, the other day at home, he escaped from his cage and it REALLY freaked my mom out. Now she is mad at me. Sigh, since I can not sell my Mom, please buy my lizard.', 'images/prehensile-tailed-skink2.jpg','images/prehensile-tailed-skink2-thumb.jpg', 5000,'95','95', 15, 3, 0);
414
- INSERT INTO item VALUES('413', 'reptile01', 'Leopard Gecko', 'Are you seeing spots in front of your eyes? No you are not sleepy. That is just the affect of my gecko and his beautiful spotted skin.', 'images/leopard-gecko2.jpg','images/leopard-gecko-thumb2.jpg', 1200,'96','96', 15, 4, 0);
415
- INSERT INTO item VALUES('414', 'reptile01', 'Guinea Pig', 'Oh no! I dont like snakes at all. Why am I here in this list surrounded by serpents? Help save me! Take me home to a nice warm cage with fresh newspaper. ', 'images/guinea-pig.jpg','images/guinea-pig-thumb.jpg', 1000,'97','97', 15, 4, 0);
416
- INSERT INTO item VALUES('415', 'reptile01', 'Iron Dragon', 'Just look at this fierce beast. This is so tough its like a secret military weapon.', 'images/dragon-iron-med.jpg','images/dragon-iron-thumb.jpg', 500,'98','98', 15, 3, 0);
417
- INSERT INTO item VALUES('416', 'reptile01', 'Green slider', 'This snake looks like a lizard! It must be rare since I have never seen one like it.', 'images/lizard3.gif','images/lizard3.gif', 10,'99','99', 15, 4, 0);
418
- INSERT INTO item VALUES('417', 'reptile02', 'Green Iguana', 'This is one proud and tough lizard. He holds his head high in any circumstance.', 'images/lizard1.gif','images/lizard1.gif', 2100,'100','100', 15, 5, 0);
419
- INSERT INTO item VALUES('418', 'reptile02', 'Iguana', 'My iguana needs a home. His tail is really long. He is very nice.', 'images/lizard2.gif','images/lizard2.gif', 500,'101','101', 15, 5, 0);
420
- INSERT INTO item VALUES('419', 'reptile02', 'Frog', 'This little green frog was rescued from the chef in the kitchen of a french restaurant. If I had not acted quickly, his legs would have been appetizers. Now for just a small fee you can buy him as your pet.', 'images/frog1.gif','images/frog1.gif', 1500,'102','102', 15, 3, 0);
421
-
422
- INSERT INTO tag VALUES(1,'awesome',5);
423
- INSERT INTO tag VALUES(2,'interesting',2);
424
- INSERT INTO tag VALUES(3,'cool',10);
425
- INSERT INTO tag VALUES(4,'excellent',20);
426
- INSERT INTO tag VALUES(5,'fun',20);
427
- INSERT INTO tag VALUES(6,'worthless',4);
428
- INSERT INTO tag VALUES(7,'superior',10);
429
- INSERT INTO tag VALUES(8,'inferior',4);
430
-
431
- INSERT INTO tag_item VALUES(1, '1');
432
- INSERT INTO tag_item VALUES(1, '2');
433
- INSERT INTO tag_item VALUES(1, '3');
434
- INSERT INTO tag_item VALUES(1, '4');
435
- INSERT INTO tag_item VALUES(1, '5');
436
- INSERT INTO tag_item VALUES(2, '1');
437
- INSERT INTO tag_item VALUES(2, '2');
438
- INSERT INTO tag_item VALUES(3, '1');
439
- INSERT INTO tag_item VALUES(3, '2');
440
- INSERT INTO tag_item VALUES(3, '3');
441
- INSERT INTO tag_item VALUES(3, '4');
442
- INSERT INTO tag_item VALUES(3, '5');
443
- INSERT INTO tag_item VALUES(3, '6');
444
- INSERT INTO tag_item VALUES(3, '7');
445
- INSERT INTO tag_item VALUES(3, '8');
446
- INSERT INTO tag_item VALUES(3, '9');
447
- INSERT INTO tag_item VALUES(3, '10');
448
- INSERT INTO tag_item VALUES(4, '8');
449
- INSERT INTO tag_item VALUES(4, '9');
450
- INSERT INTO tag_item VALUES(4, '10');
451
- INSERT INTO tag_item VALUES(4, '11');
452
- INSERT INTO tag_item VALUES(4, '12');
453
- INSERT INTO tag_item VALUES(4, '13');
454
- INSERT INTO tag_item VALUES(4, '14');
455
- INSERT INTO tag_item VALUES(4, '15');
456
- INSERT INTO tag_item VALUES(4, '16');
457
- INSERT INTO tag_item VALUES(4, '17');
458
- INSERT INTO tag_item VALUES(4, '18');
459
- INSERT INTO tag_item VALUES(4, '19');
460
- INSERT INTO tag_item VALUES(4, '20');
461
- INSERT INTO tag_item VALUES(4, '21');
462
- INSERT INTO tag_item VALUES(4, '22');
463
- INSERT INTO tag_item VALUES(4, '23');
464
- INSERT INTO tag_item VALUES(4, '24');
465
- INSERT INTO tag_item VALUES(4, '25');
466
- INSERT INTO tag_item VALUES(4, '26');
467
- INSERT INTO tag_item VALUES(4, '27');
468
- INSERT INTO tag_item VALUES(5, '28');
469
- INSERT INTO tag_item VALUES(5, '29');
470
- INSERT INTO tag_item VALUES(5, '100');
471
- INSERT INTO tag_item VALUES(5, '101');
472
- INSERT INTO tag_item VALUES(5, '102');
473
- INSERT INTO tag_item VALUES(5, '103');
474
- INSERT INTO tag_item VALUES(5, '104');
475
- INSERT INTO tag_item VALUES(5, '105');
476
- INSERT INTO tag_item VALUES(5, '106');
477
- INSERT INTO tag_item VALUES(5, '107');
478
- INSERT INTO tag_item VALUES(5, '108');
479
- INSERT INTO tag_item VALUES(5, '109');
480
- INSERT INTO tag_item VALUES(5, '110');
481
- INSERT INTO tag_item VALUES(5, '111');
482
- INSERT INTO tag_item VALUES(5, '112');
483
- INSERT INTO tag_item VALUES(5, '113');
484
- INSERT INTO tag_item VALUES(5, '114');
485
- INSERT INTO tag_item VALUES(5, '115');
486
- INSERT INTO tag_item VALUES(5, '116');
487
- INSERT INTO tag_item VALUES(5, '117');
488
- INSERT INTO tag_item VALUES(6, '401');
489
- INSERT INTO tag_item VALUES(6, '402');
490
- INSERT INTO tag_item VALUES(6, '403');
491
- INSERT INTO tag_item VALUES(6, '404');
492
- INSERT INTO tag_item VALUES(7, '405');
493
- INSERT INTO tag_item VALUES(7, '406');
494
- INSERT INTO tag_item VALUES(7, '407');
495
- INSERT INTO tag_item VALUES(7, '408');
496
- INSERT INTO tag_item VALUES(7, '409');
497
- INSERT INTO tag_item VALUES(7, '410');
498
- INSERT INTO tag_item VALUES(7, '411');
499
- INSERT INTO tag_item VALUES(7, '412');
500
- INSERT INTO tag_item VALUES(7, '413');
501
- INSERT INTO tag_item VALUES(7, '414');
502
- INSERT INTO tag_item VALUES(8, '415');
503
- INSERT INTO tag_item VALUES(8, '416');
504
- INSERT INTO tag_item VALUES(8, '417');
505
- INSERT INTO tag_item VALUES(8, '418');
506
-
507
-
508
- INSERT INTO id_gen VALUES('ITEM_ID',419);
509
- INSERT INTO id_gen VALUES('ADDRESS_ID',102);
510
- INSERT INTO id_gen VALUES('CONTACT_INFO_ID',102);
511
- INSERT INTO id_gen VALUES('TAG_ID',8);
512
-