enju_manifestation_viewer 0.1.0.pre4 → 0.1.0.pre5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51c909be9b762c85a1bea854889dfb6dc9d29b9c
4
- data.tar.gz: 7fb8fe752d32586f4523a33e3f4a35f951e8d08b
3
+ metadata.gz: a5a33ba870454e1d13ca66be5bd57b15920694af
4
+ data.tar.gz: 515384e0f253c06866b8682bc376e01e4b1bfa05
5
5
  SHA512:
6
- metadata.gz: b1af67ba266eed71797016ccae6479efc898e00869d1d83d719022d417599ff418e18c125bc42a73d222845f4a6c5d8a689cf55508fcf02e2cb99c465ccd1bc4
7
- data.tar.gz: 5e1a5c8eeafa092c1113209e92f311e7ae813e33ed0ea662c789017a07d8ce9f24c54f4e81b59893a328553bf8f583631b0e2f3faaa6cd15dbd02d7ae68f64e4
6
+ metadata.gz: 48c28aa4cc87fa08b560e6b4f69958d321fa1582fb0a3dcc882dd850caa5f9beddc5e5eb2343146aaa8063fe90cdad41ffcaf5ce2ec086844cae2bcdcdd991d8
7
+ data.tar.gz: 805eacdee931f4822697a9646702081602701e2925d4f00c9aa780ae028b83749e06a45d328f4e75e9ff541af806867327ddb11d1cf438f883cde3a2149f349b
@@ -1,3 +1,3 @@
1
1
  module EnjuManifestationViewer
2
- VERSION = "0.1.0.pre4"
2
+ VERSION = "0.1.0.pre5"
3
3
  end
@@ -54,8 +54,6 @@ ActiveRecord::Schema.define(:version => 20110916091020) do
54
54
  t.integer "required_score", :default => 0, :null => false
55
55
  t.integer "frequency_id", :default => 1, :null => false
56
56
  t.boolean "subscription_master", :default => false, :null => false
57
- t.integer "ipaper_id"
58
- t.string "ipaper_access_key"
59
57
  t.integer "volume_number"
60
58
  t.integer "issue_number"
61
59
  t.integer "serial_number"
Binary file
@@ -0,0 +1,564 @@
1
+ Connecting to database specified by database.yml
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
+ Migrating to CreateManifestations (5)
7
+  (0.0ms) begin transaction
8
+  (0.6ms) CREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_list" varchar(255), "issue_number_list" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL)
9
+  (0.2ms) CREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")
10
+  (0.1ms) CREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")
11
+  (0.1ms) CREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")
12
+  (0.1ms) CREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")
13
+  (0.1ms) CREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")
14
+  (0.1ms) CREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")
15
+  (0.1ms) CREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")
16
+  (0.1ms) CREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")
17
+  (0.1ms) CREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")
18
+  (0.1ms) CREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")
19
+  (0.1ms) CREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")
20
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('5')
21
+  (1.3ms) commit transaction
22
+ Migrating to RenameManifestationNumberListToNumberString (20110916053430)
23
+  (0.0ms) begin transaction
24
+  (0.9ms) CREATE TEMPORARY TABLE "altered_manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_list" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) 
25
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_updated_at" ON "altered_manifestations" ("updated_at")
26
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_manifestation_identifier" ON "altered_manifestations" ("manifestation_identifier")
27
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_frequency_id" ON "altered_manifestations" ("frequency_id")
28
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_access_address" ON "altered_manifestations" ("access_address")
29
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_issn" ON "altered_manifestations" ("issn")
30
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_oclc_number" ON "altered_manifestations" ("oclc_number")
31
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_lccn" ON "altered_manifestations" ("lccn")
32
+  (0.2ms) CREATE INDEX "temp_index_altered_manifestations_on_nbn" ON "altered_manifestations" ("nbn")
33
+  (0.2ms) CREATE INDEX "temp_index_altered_manifestations_on_isbn" ON "altered_manifestations" ("isbn")
34
+  (0.2ms) CREATE INDEX "temp_index_altered_manifestations_on_required_role_id" ON "altered_manifestations" ("required_role_id")
35
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_carrier_type_id" ON "altered_manifestations" ("carrier_type_id")
36
+  (0.1ms) SELECT * FROM "manifestations"
37
+  (0.8ms) DROP TABLE "manifestations"
38
+  (0.2ms) CREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_list" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) 
39
+  (0.2ms) CREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")
40
+  (0.1ms) CREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")
41
+  (0.1ms) CREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")
42
+  (0.1ms) CREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")
43
+  (0.1ms) CREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")
44
+  (0.1ms) CREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")
45
+  (0.1ms) CREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")
46
+  (0.1ms) CREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")
47
+  (0.1ms) CREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")
48
+  (0.1ms) CREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")
49
+  (0.1ms) CREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")
50
+  (0.1ms) SELECT * FROM "altered_manifestations"
51
+  (0.6ms) DROP TABLE "altered_manifestations"
52
+  (0.2ms) CREATE TEMPORARY TABLE "altered_manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) 
53
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_updated_at" ON "altered_manifestations" ("updated_at")
54
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_manifestation_identifier" ON "altered_manifestations" ("manifestation_identifier")
55
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_frequency_id" ON "altered_manifestations" ("frequency_id")
56
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_access_address" ON "altered_manifestations" ("access_address")
57
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_issn" ON "altered_manifestations" ("issn")
58
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_oclc_number" ON "altered_manifestations" ("oclc_number")
59
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_lccn" ON "altered_manifestations" ("lccn")
60
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_nbn" ON "altered_manifestations" ("nbn")
61
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_isbn" ON "altered_manifestations" ("isbn")
62
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_required_role_id" ON "altered_manifestations" ("required_role_id")
63
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_carrier_type_id" ON "altered_manifestations" ("carrier_type_id")
64
+  (0.1ms) SELECT * FROM "manifestations"
65
+  (0.5ms) DROP TABLE "manifestations"
66
+  (0.2ms) CREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) 
67
+  (0.1ms) CREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")
68
+  (0.1ms) CREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")
69
+  (0.1ms) CREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")
70
+  (0.1ms) CREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")
71
+  (0.1ms) CREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")
72
+  (0.1ms) CREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")
73
+  (0.1ms) CREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")
74
+  (0.1ms) CREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")
75
+  (0.2ms) CREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")
76
+  (0.1ms) CREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")
77
+  (0.1ms) CREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")
78
+  (0.1ms) SELECT * FROM "altered_manifestations"
79
+  (0.3ms) DROP TABLE "altered_manifestations"
80
+  (0.2ms) CREATE TEMPORARY TABLE "altered_manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_string" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) 
81
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_updated_at" ON "altered_manifestations" ("updated_at")
82
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_manifestation_identifier" ON "altered_manifestations" ("manifestation_identifier")
83
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_frequency_id" ON "altered_manifestations" ("frequency_id")
84
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_access_address" ON "altered_manifestations" ("access_address")
85
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_issn" ON "altered_manifestations" ("issn")
86
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_oclc_number" ON "altered_manifestations" ("oclc_number")
87
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_lccn" ON "altered_manifestations" ("lccn")
88
+  (0.2ms) CREATE INDEX "temp_index_altered_manifestations_on_nbn" ON "altered_manifestations" ("nbn")
89
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_isbn" ON "altered_manifestations" ("isbn")
90
+  (0.1ms) CREATE INDEX "temp_index_altered_manifestations_on_required_role_id" ON "altered_manifestations" ("required_role_id")
91
+  (0.2ms) CREATE INDEX "temp_index_altered_manifestations_on_carrier_type_id" ON "altered_manifestations" ("carrier_type_id")
92
+  (0.1ms) SELECT * FROM "manifestations"
93
+  (0.3ms) DROP TABLE "manifestations"
94
+  (0.2ms) CREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_string" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) 
95
+  (0.1ms) CREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")
96
+  (0.1ms) CREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")
97
+  (0.1ms) CREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")
98
+  (0.1ms) CREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")
99
+  (0.1ms) CREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")
100
+  (0.1ms) CREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")
101
+  (0.1ms) CREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")
102
+  (0.1ms) CREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")
103
+  (0.1ms) CREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")
104
+  (0.1ms) CREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")
105
+  (0.1ms) CREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")
106
+  (0.1ms) SELECT * FROM "altered_manifestations"
107
+  (0.3ms) DROP TABLE "altered_manifestations"
108
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110916053430')
109
+  (1.7ms) commit transaction
110
+ Migrating to AddVolumeNumberToManifestation (20110916091020)
111
+  (0.1ms) begin transaction
112
+  (0.6ms) ALTER TABLE "manifestations" ADD "volume_number" integer
113
+  (0.3ms) ALTER TABLE "manifestations" ADD "issue_number" integer
114
+  (0.3ms) ALTER TABLE "manifestations" ADD "serial_number" integer
115
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110916091020')
116
+  (1.0ms) commit transaction
117
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
118
+ Connecting to database specified by database.yml
119
+  (0.4ms) begin transaction
120
+ Fixture Delete (0.5ms) DELETE FROM "manifestations"
121
+ Fixture Insert (0.2ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "start_page", "end_page", "repository_content") VALUES (1, 1, '4798002062', '2007-11-19 07:59:00.293393', 'よくわかる最新Webサービス技術', NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2007-11-19 07:59:00.293393', 1, 100, 't')
122
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "repository_content") VALUES (1, 1, '4915724824', '2007-11-19 07:59:01.991512', '情報通信ハンドブック2005', NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, '2007-11-19 07:59:01.991512', 'f')
123
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4897063590', '2007-11-19 07:59:02.618359', 'これからの生命科学研究者のためのバイオ特許入門講座', NULL, NULL, NULL, NULL, 'http://www.slis.keio.ac.jp/', 3, NULL, NULL, '2007-11-19 07:59:02.618359')
124
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0471412791', '2007-11-19 07:59:03.275738', 'THE BIOTECH INVESTOR''S BIBLE', NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, '2007-11-19 07:59:03.275738')
125
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:04.333183', '顧客満足型マーケティングの構図', NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, '2007-11-19 07:59:04.333183')
126
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:05.255684', '仕組み革新の時代', NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, '2007-11-19 07:59:05.255684')
127
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0470844701', '2007-11-19 07:59:06.892741', 'dictionary of e-business', NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, '2007-11-19 07:59:06.892741')
128
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4798101028', '2007-11-19 07:59:07.463333', 'Webサービス完全解説', NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, '2007-11-19 07:59:07.463333')
129
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4641143331', '2007-11-19 07:59:08.166195', '逐条解説不正競争防止法', NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, '2007-11-19 07:59:08.166195')
130
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '9784774127804', '2007-11-19 07:59:09.799724', 'Apache Lucene入門 : Java・オープンソース・全文検索システムの構築', NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, '2007-11-19 07:59:09.799724')
131
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, '4822281167', '2007-11-19 07:59:20.799724', 'Webサービス完全構築ガイド', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, '2007-11-19 07:59:20.799724', 2)
132
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2007-11-19 07:59:21.799724', 'YouTube - Open Source ILS Song', NULL, NULL, NULL, NULL, 'http://jp.youtube.com/watch?v=BSHBzd9ftDE', 22, NULL, NULL, '2008-04-16 15:34:01.000000', 1)
133
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2008-04-16 15:34:01.000000', '世界の美しい図書館集めてみた【第一弾】', NULL, NULL, NULL, NULL, 'http://www.nicovideo.jp/watch/sm3015373', 23, NULL, NULL, '2007-11-19 07:58:58.799724', 4)
134
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 65, '2010-03-01 07:14:18.000000', 'CGI基礎講座 : Perl・プログラミング・日本語処理', NULL, NULL, NULL, NULL, NULL, 101, NULL, NULL, '2010-02-21 15:47:09.000000')
135
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 66, '2010-03-01 07:14:18.000000', 'CGIレスキュー実践Perlプログラミング : Web裏技', NULL, NULL, NULL, NULL, NULL, 102, NULL, NULL, '2010-02-21 14:57:08.000000')
136
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 67, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.2', NULL, NULL, NULL, NULL, NULL, 103, NULL, NULL, '2010-02-21 10:51:48.000000')
137
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 68, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.1', NULL, NULL, NULL, NULL, NULL, 104, NULL, NULL, '2010-02-21 10:51:33.000000')
138
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 69, '2010-03-01 07:14:18.000000', '初めてのPerl. 続', NULL, NULL, NULL, NULL, NULL, 105, NULL, NULL, '2010-02-21 10:48:14.000000')
139
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 70, '2010-03-01 07:14:18.000000', 'Perl & XML', NULL, NULL, NULL, NULL, NULL, 106, NULL, NULL, '2010-02-21 10:45:48.000000')
140
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 71, '2010-03-01 07:14:18.000000', 'はじめてのPerlモジュール : 厳選実用モジュール集', NULL, NULL, NULL, NULL, NULL, 107, NULL, NULL, '2010-02-21 09:59:01.000000')
141
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000108', '2010-03-01 07:14:18.000000', 'Perl 5パワフルテクニック大全集', NULL, NULL, NULL, NULL, NULL, 108, NULL, NULL, '2010-02-21 08:13:17.000000')
142
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000109', '2010-03-01 07:14:18.000000', 'CGI/Perlパワープログラミング', NULL, NULL, NULL, NULL, NULL, 109, NULL, NULL, '2010-02-20 17:26:08.000000')
143
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 72, '2010-03-01 07:14:18.000000', 'Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング', NULL, NULL, NULL, NULL, NULL, 110, NULL, NULL, '2010-02-19 13:09:56.000000')
144
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 73, '2010-03-01 07:14:18.000000', 'すぐわかるPerl', NULL, NULL, NULL, NULL, NULL, 111, NULL, NULL, '2010-02-19 13:07:28.000000')
145
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 74, '2010-03-01 07:14:18.000000', 'CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう', NULL, NULL, NULL, NULL, NULL, 112, NULL, NULL, '2010-02-19 13:06:51.000000')
146
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 75, '2010-03-01 07:14:18.000000', 'プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java', NULL, NULL, NULL, NULL, NULL, 113, NULL, NULL, '2010-02-19 11:02:27.000000')
147
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756137470, '2010-03-01 07:14:18.000000', 'Rubyを256倍使うための本. 魔道編', NULL, NULL, NULL, '2001-03-20', NULL, 114, NULL, NULL, '2010-02-19 05:46:08.000000')
148
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 77, '2010-03-01 07:14:18.000000', '入門Perl', NULL, NULL, NULL, NULL, NULL, 115, NULL, NULL, '2010-02-19 05:40:17.000000')
149
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756100917, '2010-03-01 07:14:18.000000', 'sed & awkプログラミング : UNIX power tools', NULL, NULL, NULL, '1991-12-24', NULL, 116, NULL, NULL, '2010-02-19 05:39:01.000000')
150
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 79, '2010-03-01 07:14:18.000000', 'Perlの達人', NULL, NULL, NULL, NULL, NULL, 117, NULL, NULL, '2010-02-18 10:23:27.000000')
151
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000118', '2010-03-01 07:14:18.000000', 'ナチ強制・絶滅収容所 : 18施設内の生と死', NULL, NULL, NULL, NULL, NULL, 118, NULL, NULL, '2010-02-17 01:12:08.000000')
152
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000119', '2010-03-01 07:14:18.000000', 'Perl基礎講座', NULL, NULL, NULL, NULL, NULL, 119, NULL, NULL, '2010-02-16 04:30:37.000000')
153
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784274063855, '2010-03-01 07:14:18.000000', 'Rubyプログラミング入門', NULL, NULL, NULL, '2000-10-01', NULL, 120, NULL, NULL, '2010-02-16 04:29:59.000000')
154
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 81, '2010-03-01 07:14:18.000000', 'Django×Python', NULL, NULL, NULL, NULL, NULL, 121, NULL, NULL, '2010-01-30 06:22:35.000000')
155
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 82, '2010-03-01 07:14:18.000000', 'みんなのPython', NULL, NULL, NULL, NULL, NULL, 122, NULL, NULL, '2010-01-30 06:17:32.000000')
156
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 83, '2010-03-01 07:14:18.000000', 'Rubyでgroonga使って全文検索 - ラングバ', NULL, NULL, NULL, NULL, NULL, 123, NULL, NULL, '2009-10-25 13:20:34.000000')
157
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 84, '2010-03-01 07:14:18.000000', 'まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)', NULL, NULL, NULL, NULL, NULL, 124, NULL, NULL, '2009-10-20 13:46:44.000000')
158
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 85, '2010-03-01 07:14:18.000000', 'Ruby on Rails入門 : 優しいRailsの育て方', NULL, NULL, NULL, NULL, NULL, 125, NULL, NULL, '2009-10-16 05:16:48.000000')
159
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 86, '2010-03-01 07:14:18.000000', 'Ruby Cookbook', NULL, NULL, NULL, NULL, NULL, 126, NULL, NULL, '2009-06-29 12:44:11.000000')
160
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 87, '2010-03-01 07:14:18.000000', 'CGI programming on the World Wide Web', NULL, NULL, NULL, NULL, NULL, 127, NULL, NULL, '2009-06-19 13:45:14.000000')
161
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000128', '2010-03-01 07:14:18.000000', 'Genomic Perl', NULL, NULL, NULL, NULL, NULL, 128, NULL, NULL, '2009-06-19 13:27:46.000000')
162
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000129', '2010-03-01 07:14:18.000000', 'Indians of the Pacific Northwest', NULL, NULL, NULL, NULL, NULL, 129, NULL, NULL, '2009-06-19 12:16:23.000000')
163
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 88, '2010-03-01 07:14:18.000000', 'Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M', NULL, NULL, NULL, NULL, NULL, 130, NULL, NULL, '2009-06-19 12:03:29.000000')
164
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 89, '2010-03-01 07:14:18.000000', 'International Symposium Genes and Chromosomes Structure and Function', NULL, NULL, NULL, NULL, NULL, 131, NULL, NULL, '2009-06-19 12:02:48.000000')
165
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 90, '2010-03-01 07:14:18.000000', 'Perl black book, 2nd edition', NULL, NULL, NULL, NULL, NULL, 132, NULL, NULL, '2009-06-19 11:42:02.000000')
166
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 91, '2010-03-01 07:14:18.000000', 'Python scripting for computational science', NULL, NULL, NULL, NULL, NULL, 133, NULL, NULL, '2009-06-19 11:18:01.000000')
167
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 92, '2010-03-01 07:14:18.000000', 'Tests on a gold ore from the Ruby Basin, Black Hills', NULL, NULL, NULL, NULL, NULL, 134, NULL, NULL, '2009-06-19 11:06:07.000000')
168
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 93, '2010-03-01 07:14:18.000000', 'Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm', NULL, NULL, NULL, NULL, NULL, 135, NULL, NULL, '2009-06-19 10:54:21.000000')
169
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 94, '2010-03-01 07:14:18.000000', 'Three little words [sound recording] / Nevertheless (I''m in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who''s sorry now? / My sunny Tennessee / So long Oolong / Three little words', NULL, NULL, NULL, NULL, NULL, 136, NULL, NULL, '2009-06-19 10:46:46.000000')
170
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 95, '2010-03-01 07:14:18.000000', 'Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond', NULL, NULL, NULL, NULL, NULL, 137, NULL, NULL, '2009-06-19 10:18:59.000000')
171
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000138', '2010-03-01 07:14:18.000000', 'CGI programming with Perl', NULL, NULL, NULL, NULL, NULL, 138, NULL, NULL, '2009-06-19 09:19:08.000000')
172
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000139', '2010-03-01 07:14:18.000000', 'Python and XML / Python & XML / XML processing with Python', NULL, NULL, NULL, NULL, NULL, 139, NULL, NULL, '2009-06-19 09:19:02.000000')
173
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 96, '2010-03-01 07:14:18.000000', 'Perl cookbook / Solutions and examples for Perl programmers', NULL, NULL, NULL, NULL, NULL, 140, NULL, NULL, '2009-06-19 09:19:01.000000')
174
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 97, '2010-03-01 07:14:18.000000', 'Mastering Perl/Tk / Perl/Tk', NULL, NULL, NULL, NULL, NULL, 141, NULL, NULL, '2009-06-19 09:19:00.000000')
175
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 98, '2010-03-01 07:14:18.000000', 'Mastering algorithms with Perl / Practical programming through computer science', NULL, NULL, NULL, NULL, NULL, 142, NULL, NULL, '2009-06-19 09:18:58.000000')
176
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 99, '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 143, NULL, NULL, '2009-06-19 09:18:45.000000')
177
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 100, '2010-03-01 07:14:18.000000', 'Fort Worth & Tarrant County / Fort Worth and Tarrant County', NULL, NULL, NULL, NULL, NULL, 144, NULL, NULL, '2009-06-19 07:49:42.000000')
178
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 101, '2010-03-01 07:14:18.000000', 'Monty Python''s Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)', NULL, NULL, NULL, NULL, NULL, 145, NULL, NULL, '2009-06-19 06:44:35.000000')
179
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 102, '2010-03-01 07:14:18.000000', 'AWK programming language', NULL, NULL, NULL, NULL, NULL, 146, NULL, NULL, '2009-06-19 06:28:27.000000')
180
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 103, '2010-03-01 07:14:18.000000', 'Toting the lead row', NULL, NULL, NULL, NULL, NULL, 147, NULL, NULL, '2009-06-19 02:16:22.000000')
181
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000148', '2010-03-01 07:14:18.000000', 'Afro-American blues and game songs', NULL, NULL, NULL, NULL, NULL, 148, NULL, NULL, '2009-06-19 02:09:17.000000')
182
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000149', '2010-03-01 07:14:18.000000', 'Perl/Tk pocket reference', NULL, NULL, NULL, NULL, NULL, 149, NULL, NULL, '2009-06-19 01:10:56.000000')
183
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 104, '2010-03-01 07:14:18.000000', 'politics of improving urban air quality', NULL, NULL, NULL, NULL, NULL, 150, NULL, NULL, '2009-06-19 00:42:38.000000')
184
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 105, '2010-03-01 07:14:18.000000', 'Perl developer''s dictionary', NULL, NULL, NULL, NULL, NULL, 151, NULL, NULL, '2009-06-19 00:13:13.000000')
185
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 106, '2010-03-01 07:14:18.000000', 'Andrテδゥ Poitiers', NULL, NULL, NULL, NULL, NULL, 152, NULL, NULL, '2009-06-18 23:58:14.000000')
186
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 107, '2010-03-01 07:14:18.000000', 'PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide', NULL, NULL, NULL, NULL, NULL, 153, NULL, NULL, '2009-06-18 23:43:08.000000')
187
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 108, '2010-03-01 07:14:18.000000', 'Python tutorial', NULL, NULL, NULL, NULL, NULL, 154, NULL, NULL, '2009-06-18 23:17:40.000000')
188
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 109, '2010-03-01 07:14:18.000000', 'Line shapes of paramagnetic resonances in ruby', NULL, NULL, NULL, NULL, NULL, 155, NULL, NULL, '2009-06-18 22:44:00.000000')
189
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 110, '2010-03-01 07:14:18.000000', 'Perl programmer''s reference', NULL, NULL, NULL, NULL, NULL, 156, NULL, NULL, '2009-06-18 22:19:34.000000')
190
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 111, '2010-03-01 07:14:18.000000', 'Technological capabilities in developing countries', NULL, NULL, NULL, NULL, NULL, 157, NULL, NULL, '2009-06-18 21:58:42.000000')
191
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000158', '2010-03-01 07:14:18.000000', 'phenomena of vagueness', NULL, NULL, NULL, NULL, NULL, 158, NULL, NULL, '2009-06-18 21:44:38.000000')
192
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000159', '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 159, NULL, NULL, '2009-06-18 21:10:02.000000')
193
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 112, '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 160, NULL, NULL, '2009-06-18 21:10:01.000000')
194
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 113, '2010-03-01 07:14:18.000000', 'Monty Python, Shakespeare, and English Renaissance drama', NULL, NULL, NULL, NULL, NULL, 161, NULL, NULL, '2009-06-18 20:37:58.000000')
195
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 114, '2010-03-01 07:14:18.000000', 'Analyzing computer system performance with PERL::PDQ', NULL, NULL, NULL, NULL, NULL, 162, NULL, NULL, '2009-06-18 20:29:54.000000')
196
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 115, '2010-03-01 07:14:18.000000', 'equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide', NULL, NULL, NULL, NULL, NULL, 163, NULL, NULL, '2009-06-18 20:16:44.000000')
197
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 116, '2010-03-01 07:14:18.000000', 'Stimulated optical emission in ruby', NULL, NULL, NULL, NULL, NULL, 164, NULL, NULL, '2009-06-18 20:05:25.000000')
198
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 117, '2010-03-01 07:14:18.000000', 'Strategic planning and risk analysis', NULL, NULL, NULL, NULL, NULL, 165, NULL, NULL, '2009-06-18 17:41:41.000000')
199
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 118, '2010-03-01 07:14:18.000000', 'Performance assertion checking', NULL, NULL, NULL, NULL, NULL, 166, NULL, NULL, '2009-06-18 17:34:03.000000')
200
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 119, '2010-03-01 07:14:18.000000', 'Spin-lattice relaxation time of ruby', NULL, NULL, NULL, NULL, NULL, 167, NULL, NULL, '2009-06-18 16:26:38.000000')
201
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000168', '2010-03-01 07:14:18.000000', 'Mourning Ruby', NULL, NULL, NULL, NULL, NULL, 168, NULL, NULL, '2009-06-18 16:25:25.000000')
202
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000169', '2010-03-01 07:14:18.000000', 'statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s', NULL, NULL, NULL, NULL, NULL, 169, NULL, NULL, '2009-06-18 15:53:44.000000')
203
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 120, '2010-03-01 07:14:18.000000', 'Professional Perl programming / Perl programming', NULL, NULL, NULL, NULL, NULL, 170, NULL, NULL, '2009-06-18 15:52:50.000000')
204
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 121, '2010-03-01 07:14:18.000000', 'Perl in a nutshell', NULL, NULL, NULL, NULL, NULL, 171, NULL, NULL, '2009-06-18 15:40:53.000000')
205
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 122, '2010-03-01 07:14:18.000000', 'Programming Web services with Perl', NULL, NULL, NULL, NULL, NULL, 172, NULL, NULL, '2009-06-18 15:34:21.000000')
206
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 123, '2010-03-01 07:14:18.000000', 'Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles', NULL, NULL, NULL, NULL, NULL, 173, NULL, NULL, '2009-06-18 15:08:06.000000')
207
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 124, '2010-03-01 07:14:18.000000', 'Europeras 3 & 4 / Europera', NULL, NULL, NULL, NULL, NULL, 174, NULL, NULL, '2009-06-18 15:05:43.000000')
208
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 125, '2010-03-01 07:14:18.000000', 'Retreats from realism in recent English drama', NULL, NULL, NULL, NULL, NULL, 175, NULL, NULL, '2009-06-18 15:03:06.000000')
209
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 126, '2010-03-01 07:14:18.000000', 'Python programming patterns', NULL, NULL, NULL, NULL, NULL, 176, NULL, NULL, '2009-06-18 14:52:11.000000')
210
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 127, '2010-03-01 07:14:18.000000', 'Beginning Perl for bioinformatics', NULL, NULL, NULL, NULL, NULL, 177, NULL, NULL, '2009-06-18 13:45:13.000000')
211
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000178', '2010-03-01 07:14:18.000000', 'Learning Perl', NULL, NULL, NULL, NULL, NULL, 178, NULL, NULL, '2009-06-18 13:45:11.000000')
212
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000179', '2010-03-01 07:14:18.000000', 'Effective awk programming', NULL, NULL, NULL, NULL, NULL, 179, NULL, NULL, '2009-06-18 13:45:09.000000')
213
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000180', '2010-03-01 07:14:18.000000', 'Python standard library / Annotated reference for Python 2.0', NULL, NULL, NULL, NULL, NULL, 180, NULL, NULL, '2009-06-18 13:45:04.000000')
214
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000181', '2010-03-01 07:14:18.000000', 'Programming Python', NULL, NULL, NULL, NULL, NULL, 181, NULL, NULL, '2009-06-18 13:45:04.000000')
215
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000182', '2010-03-01 07:14:18.000000', 'Perl CD bookshelf', NULL, NULL, NULL, NULL, NULL, 182, NULL, NULL, '2009-06-18 13:44:56.000000')
216
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000183', '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 183, NULL, NULL, '2009-06-18 13:44:55.000000')
217
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000184', '2010-03-01 07:14:18.000000', 'Sed & awk pocket reference / Sed and awk pocket reference', NULL, NULL, NULL, NULL, NULL, 184, NULL, NULL, '2009-06-18 13:44:54.000000')
218
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000185', '2010-03-01 07:14:18.000000', 'Perl power!', NULL, NULL, NULL, NULL, NULL, 185, NULL, NULL, '2009-06-18 13:41:37.000000')
219
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000186', '2010-03-01 07:14:18.000000', 'ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com', NULL, NULL, NULL, NULL, NULL, 186, NULL, NULL, '2008-12-19 17:52:47.000000')
220
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000187', '2010-03-01 07:14:18.000000', 'Welcome ― Ruby Enterprise Edition', NULL, NULL, NULL, NULL, NULL, 187, NULL, NULL, '2008-10-19 15:58:50.000000')
221
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000188', '2010-03-01 07:14:18.000000', 'Pythonクックブック', NULL, NULL, NULL, NULL, NULL, 188, NULL, NULL, '2008-08-22 00:27:29.000000')
222
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000189', '2010-03-01 07:14:18.000000', 'みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python', NULL, NULL, NULL, NULL, NULL, 189, NULL, NULL, '2008-08-22 00:20:59.000000')
223
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000190', '2010-03-01 07:14:18.000000', 'Django | The Web framework for perfectionists with deadlines', NULL, NULL, NULL, NULL, NULL, 190, NULL, NULL, '2008-05-20 13:06:31.000000')
224
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000191', '2010-03-01 07:14:18.000000', 'fac-back-opac - Google Code', NULL, NULL, NULL, NULL, NULL, 191, NULL, NULL, '2008-05-19 22:36:11.000000')
225
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784873113241, '2010-03-01 07:14:18.000000', 'Rubyクックブック', NULL, NULL, NULL, '2007-04-27', NULL, 192, NULL, NULL, '2008-03-05 01:37:55.000000')
226
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "isbn10", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797340044, 4797340045, '2010-03-01 07:14:18.000000', 'Rubyレシピブック', NULL, NULL, NULL, '2007-02-01', NULL, 193, NULL, NULL, '2008-03-05 01:30:39.000000')
227
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000194', '2010-03-01 07:14:18.000000', '初めてのPerl 第3版', NULL, NULL, NULL, NULL, NULL, 194, NULL, NULL, '2007-11-19 17:56:37.000000')
228
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000195', '2010-03-01 07:14:18.000000', '続・初めてのPerl 改訂版', NULL, NULL, NULL, NULL, NULL, 195, NULL, NULL, '2007-11-19 17:55:42.000000')
229
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797336610, '2010-03-01 07:14:18.000000', 'たのしいRuby 第2版 Rubyではじめる気軽なプログラミング', NULL, NULL, NULL, '2006-08-05', NULL, 196, NULL, NULL, '2007-11-19 17:55:41.000000')
230
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', 'Ruby', NULL, NULL, NULL, NULL, NULL, 197, NULL, NULL, '2007-11-19 17:55:41.000000')
231
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', '紅玉の本', NULL, NULL, NULL, NULL, NULL, 198, NULL, NULL, '2007-11-19 17:55:41.000000')
232
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn") VALUES (1, 1, 9876543210201, '2010-03-01 07:14:18.000000', 'テスト雑誌2005年1月号', NULL, NULL, NULL, NULL, NULL, 201, NULL, NULL, '2007-11-19 17:55:41.000000', 3, '09130000')
233
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn", "serial_number", "volume_number", "issue_number") VALUES (1, 1, 9876543210202, '2010-03-01 07:14:18.000000', 'テスト雑誌2月号', NULL, NULL, NULL, NULL, NULL, 202, NULL, NULL, '2007-11-19 17:55:41.000000', 3, 12345678, 2, 1, 2)
234
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id") VALUES (1, 1, 9876543210203, '2010-03-01 07:14:18.000000', 'テスト単行本記事2005', NULL, NULL, NULL, NULL, NULL, 203, NULL, NULL, '2010-03-03 17:00:00.000000', 1)
235
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890001, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事1', NULL, NULL, NULL, NULL, NULL, 204, NULL, NULL, '2010-03-03 20:00:00.000000')
236
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890002, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事2', NULL, NULL, NULL, NULL, NULL, 205, NULL, NULL, '2010-03-03 20:00:00.000000')
237
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890003, '2010-03-03 11:00:00.000000', 'テスト雑誌2月号の記事1', NULL, NULL, NULL, NULL, NULL, 206, NULL, NULL, '2010-03-03 20:00:00.000000')
238
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9876543210207, '2010-03-03 11:00:00.000000', '試験単行本', NULL, NULL, NULL, NULL, NULL, 207, NULL, NULL, '2010-03-03 20:00:00.000000')
239
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-16 02:00:00.000000', 'ある出版物', NULL, NULL, NULL, NULL, NULL, 208, NULL, NULL, '2010-03-16 11:00:00.000000')
240
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用1', NULL, NULL, NULL, NULL, NULL, 209, NULL, NULL, '2010-03-19 13:00:00.000000', 4)
241
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用2', NULL, NULL, NULL, NULL, NULL, 210, NULL, NULL, '2010-03-19 13:00:00.000000', 4, 't')
242
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用1', NULL, NULL, NULL, NULL, NULL, 211, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
243
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用2', NULL, NULL, NULL, NULL, NULL, 212, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
244
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用1', NULL, NULL, NULL, NULL, NULL, 213, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 't')
245
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用2', NULL, NULL, NULL, NULL, NULL, 214, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 'f')
246
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 215, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 't')
247
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 216, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
248
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', 'Flickr', NULL, NULL, NULL, NULL, 'http://www.flickr.com/photos/japan_library_association/sets/72157626376861041/', 217, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
249
+  (1.6ms) commit transaction
250
+  (0.0ms) begin transaction
251
+ Manifestation Load (0.3ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 1]]
252
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_google_book_search.html.erb (2.2ms)
253
+  (0.1ms) rollback transaction
254
+  (0.0ms) begin transaction
255
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 22]]
256
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_youtube.html.erb (5.0ms)
257
+  (0.1ms) rollback transaction
258
+  (0.0ms) begin transaction
259
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 23]]
260
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_nicovideo.html.erb (0.7ms)
261
+  (0.1ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 217]]
264
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_flickr.html.erb (0.8ms)
265
+  (0.0ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 1]]
268
+  (0.0ms) rollback transaction
269
+ Connecting to database specified by database.yml
270
+  (0.4ms) begin transaction
271
+ Fixture Delete (0.6ms) DELETE FROM "manifestations"
272
+ Fixture Insert (0.2ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "start_page", "end_page", "repository_content") VALUES (1, 1, '4798002062', '2007-11-19 07:59:00.293393', 'よくわかる最新Webサービス技術', NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2007-11-19 07:59:00.293393', 1, 100, 't')
273
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "repository_content") VALUES (1, 1, '4915724824', '2007-11-19 07:59:01.991512', '情報通信ハンドブック2005', NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, '2007-11-19 07:59:01.991512', 'f')
274
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4897063590', '2007-11-19 07:59:02.618359', 'これからの生命科学研究者のためのバイオ特許入門講座', NULL, NULL, NULL, NULL, 'http://www.slis.keio.ac.jp/', 3, NULL, NULL, '2007-11-19 07:59:02.618359')
275
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0471412791', '2007-11-19 07:59:03.275738', 'THE BIOTECH INVESTOR''S BIBLE', NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, '2007-11-19 07:59:03.275738')
276
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:04.333183', '顧客満足型マーケティングの構図', NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, '2007-11-19 07:59:04.333183')
277
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:05.255684', '仕組み革新の時代', NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, '2007-11-19 07:59:05.255684')
278
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0470844701', '2007-11-19 07:59:06.892741', 'dictionary of e-business', NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, '2007-11-19 07:59:06.892741')
279
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4798101028', '2007-11-19 07:59:07.463333', 'Webサービス完全解説', NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, '2007-11-19 07:59:07.463333')
280
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4641143331', '2007-11-19 07:59:08.166195', '逐条解説不正競争防止法', NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, '2007-11-19 07:59:08.166195')
281
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '9784774127804', '2007-11-19 07:59:09.799724', 'Apache Lucene入門 : Java・オープンソース・全文検索システムの構築', NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, '2007-11-19 07:59:09.799724')
282
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, '4822281167', '2007-11-19 07:59:20.799724', 'Webサービス完全構築ガイド', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, '2007-11-19 07:59:20.799724', 2)
283
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2007-11-19 07:59:21.799724', 'YouTube - Open Source ILS Song', NULL, NULL, NULL, NULL, 'http://jp.youtube.com/watch?v=BSHBzd9ftDE', 22, NULL, NULL, '2008-04-16 15:34:01.000000', 1)
284
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2008-04-16 15:34:01.000000', '世界の美しい図書館集めてみた【第一弾】', NULL, NULL, NULL, NULL, 'http://www.nicovideo.jp/watch/sm3015373', 23, NULL, NULL, '2007-11-19 07:58:58.799724', 4)
285
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 65, '2010-03-01 07:14:18.000000', 'CGI基礎講座 : Perl・プログラミング・日本語処理', NULL, NULL, NULL, NULL, NULL, 101, NULL, NULL, '2010-02-21 15:47:09.000000')
286
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 66, '2010-03-01 07:14:18.000000', 'CGIレスキュー実践Perlプログラミング : Web裏技', NULL, NULL, NULL, NULL, NULL, 102, NULL, NULL, '2010-02-21 14:57:08.000000')
287
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 67, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.2', NULL, NULL, NULL, NULL, NULL, 103, NULL, NULL, '2010-02-21 10:51:48.000000')
288
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 68, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.1', NULL, NULL, NULL, NULL, NULL, 104, NULL, NULL, '2010-02-21 10:51:33.000000')
289
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 69, '2010-03-01 07:14:18.000000', '初めてのPerl. 続', NULL, NULL, NULL, NULL, NULL, 105, NULL, NULL, '2010-02-21 10:48:14.000000')
290
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 70, '2010-03-01 07:14:18.000000', 'Perl & XML', NULL, NULL, NULL, NULL, NULL, 106, NULL, NULL, '2010-02-21 10:45:48.000000')
291
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 71, '2010-03-01 07:14:18.000000', 'はじめてのPerlモジュール : 厳選実用モジュール集', NULL, NULL, NULL, NULL, NULL, 107, NULL, NULL, '2010-02-21 09:59:01.000000')
292
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000108', '2010-03-01 07:14:18.000000', 'Perl 5パワフルテクニック大全集', NULL, NULL, NULL, NULL, NULL, 108, NULL, NULL, '2010-02-21 08:13:17.000000')
293
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000109', '2010-03-01 07:14:18.000000', 'CGI/Perlパワープログラミング', NULL, NULL, NULL, NULL, NULL, 109, NULL, NULL, '2010-02-20 17:26:08.000000')
294
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 72, '2010-03-01 07:14:18.000000', 'Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング', NULL, NULL, NULL, NULL, NULL, 110, NULL, NULL, '2010-02-19 13:09:56.000000')
295
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 73, '2010-03-01 07:14:18.000000', 'すぐわかるPerl', NULL, NULL, NULL, NULL, NULL, 111, NULL, NULL, '2010-02-19 13:07:28.000000')
296
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 74, '2010-03-01 07:14:18.000000', 'CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう', NULL, NULL, NULL, NULL, NULL, 112, NULL, NULL, '2010-02-19 13:06:51.000000')
297
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 75, '2010-03-01 07:14:18.000000', 'プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java', NULL, NULL, NULL, NULL, NULL, 113, NULL, NULL, '2010-02-19 11:02:27.000000')
298
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756137470, '2010-03-01 07:14:18.000000', 'Rubyを256倍使うための本. 魔道編', NULL, NULL, NULL, '2001-03-20', NULL, 114, NULL, NULL, '2010-02-19 05:46:08.000000')
299
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 77, '2010-03-01 07:14:18.000000', '入門Perl', NULL, NULL, NULL, NULL, NULL, 115, NULL, NULL, '2010-02-19 05:40:17.000000')
300
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756100917, '2010-03-01 07:14:18.000000', 'sed & awkプログラミング : UNIX power tools', NULL, NULL, NULL, '1991-12-24', NULL, 116, NULL, NULL, '2010-02-19 05:39:01.000000')
301
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 79, '2010-03-01 07:14:18.000000', 'Perlの達人', NULL, NULL, NULL, NULL, NULL, 117, NULL, NULL, '2010-02-18 10:23:27.000000')
302
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000118', '2010-03-01 07:14:18.000000', 'ナチ強制・絶滅収容所 : 18施設内の生と死', NULL, NULL, NULL, NULL, NULL, 118, NULL, NULL, '2010-02-17 01:12:08.000000')
303
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000119', '2010-03-01 07:14:18.000000', 'Perl基礎講座', NULL, NULL, NULL, NULL, NULL, 119, NULL, NULL, '2010-02-16 04:30:37.000000')
304
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784274063855, '2010-03-01 07:14:18.000000', 'Rubyプログラミング入門', NULL, NULL, NULL, '2000-10-01', NULL, 120, NULL, NULL, '2010-02-16 04:29:59.000000')
305
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 81, '2010-03-01 07:14:18.000000', 'Django×Python', NULL, NULL, NULL, NULL, NULL, 121, NULL, NULL, '2010-01-30 06:22:35.000000')
306
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 82, '2010-03-01 07:14:18.000000', 'みんなのPython', NULL, NULL, NULL, NULL, NULL, 122, NULL, NULL, '2010-01-30 06:17:32.000000')
307
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 83, '2010-03-01 07:14:18.000000', 'Rubyでgroonga使って全文検索 - ラングバ', NULL, NULL, NULL, NULL, NULL, 123, NULL, NULL, '2009-10-25 13:20:34.000000')
308
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 84, '2010-03-01 07:14:18.000000', 'まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)', NULL, NULL, NULL, NULL, NULL, 124, NULL, NULL, '2009-10-20 13:46:44.000000')
309
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 85, '2010-03-01 07:14:18.000000', 'Ruby on Rails入門 : 優しいRailsの育て方', NULL, NULL, NULL, NULL, NULL, 125, NULL, NULL, '2009-10-16 05:16:48.000000')
310
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 86, '2010-03-01 07:14:18.000000', 'Ruby Cookbook', NULL, NULL, NULL, NULL, NULL, 126, NULL, NULL, '2009-06-29 12:44:11.000000')
311
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 87, '2010-03-01 07:14:18.000000', 'CGI programming on the World Wide Web', NULL, NULL, NULL, NULL, NULL, 127, NULL, NULL, '2009-06-19 13:45:14.000000')
312
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000128', '2010-03-01 07:14:18.000000', 'Genomic Perl', NULL, NULL, NULL, NULL, NULL, 128, NULL, NULL, '2009-06-19 13:27:46.000000')
313
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000129', '2010-03-01 07:14:18.000000', 'Indians of the Pacific Northwest', NULL, NULL, NULL, NULL, NULL, 129, NULL, NULL, '2009-06-19 12:16:23.000000')
314
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 88, '2010-03-01 07:14:18.000000', 'Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M', NULL, NULL, NULL, NULL, NULL, 130, NULL, NULL, '2009-06-19 12:03:29.000000')
315
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 89, '2010-03-01 07:14:18.000000', 'International Symposium Genes and Chromosomes Structure and Function', NULL, NULL, NULL, NULL, NULL, 131, NULL, NULL, '2009-06-19 12:02:48.000000')
316
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 90, '2010-03-01 07:14:18.000000', 'Perl black book, 2nd edition', NULL, NULL, NULL, NULL, NULL, 132, NULL, NULL, '2009-06-19 11:42:02.000000')
317
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 91, '2010-03-01 07:14:18.000000', 'Python scripting for computational science', NULL, NULL, NULL, NULL, NULL, 133, NULL, NULL, '2009-06-19 11:18:01.000000')
318
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 92, '2010-03-01 07:14:18.000000', 'Tests on a gold ore from the Ruby Basin, Black Hills', NULL, NULL, NULL, NULL, NULL, 134, NULL, NULL, '2009-06-19 11:06:07.000000')
319
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 93, '2010-03-01 07:14:18.000000', 'Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm', NULL, NULL, NULL, NULL, NULL, 135, NULL, NULL, '2009-06-19 10:54:21.000000')
320
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 94, '2010-03-01 07:14:18.000000', 'Three little words [sound recording] / Nevertheless (I''m in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who''s sorry now? / My sunny Tennessee / So long Oolong / Three little words', NULL, NULL, NULL, NULL, NULL, 136, NULL, NULL, '2009-06-19 10:46:46.000000')
321
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 95, '2010-03-01 07:14:18.000000', 'Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond', NULL, NULL, NULL, NULL, NULL, 137, NULL, NULL, '2009-06-19 10:18:59.000000')
322
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000138', '2010-03-01 07:14:18.000000', 'CGI programming with Perl', NULL, NULL, NULL, NULL, NULL, 138, NULL, NULL, '2009-06-19 09:19:08.000000')
323
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000139', '2010-03-01 07:14:18.000000', 'Python and XML / Python & XML / XML processing with Python', NULL, NULL, NULL, NULL, NULL, 139, NULL, NULL, '2009-06-19 09:19:02.000000')
324
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 96, '2010-03-01 07:14:18.000000', 'Perl cookbook / Solutions and examples for Perl programmers', NULL, NULL, NULL, NULL, NULL, 140, NULL, NULL, '2009-06-19 09:19:01.000000')
325
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 97, '2010-03-01 07:14:18.000000', 'Mastering Perl/Tk / Perl/Tk', NULL, NULL, NULL, NULL, NULL, 141, NULL, NULL, '2009-06-19 09:19:00.000000')
326
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 98, '2010-03-01 07:14:18.000000', 'Mastering algorithms with Perl / Practical programming through computer science', NULL, NULL, NULL, NULL, NULL, 142, NULL, NULL, '2009-06-19 09:18:58.000000')
327
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 99, '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 143, NULL, NULL, '2009-06-19 09:18:45.000000')
328
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 100, '2010-03-01 07:14:18.000000', 'Fort Worth & Tarrant County / Fort Worth and Tarrant County', NULL, NULL, NULL, NULL, NULL, 144, NULL, NULL, '2009-06-19 07:49:42.000000')
329
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 101, '2010-03-01 07:14:18.000000', 'Monty Python''s Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)', NULL, NULL, NULL, NULL, NULL, 145, NULL, NULL, '2009-06-19 06:44:35.000000')
330
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 102, '2010-03-01 07:14:18.000000', 'AWK programming language', NULL, NULL, NULL, NULL, NULL, 146, NULL, NULL, '2009-06-19 06:28:27.000000')
331
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 103, '2010-03-01 07:14:18.000000', 'Toting the lead row', NULL, NULL, NULL, NULL, NULL, 147, NULL, NULL, '2009-06-19 02:16:22.000000')
332
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000148', '2010-03-01 07:14:18.000000', 'Afro-American blues and game songs', NULL, NULL, NULL, NULL, NULL, 148, NULL, NULL, '2009-06-19 02:09:17.000000')
333
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000149', '2010-03-01 07:14:18.000000', 'Perl/Tk pocket reference', NULL, NULL, NULL, NULL, NULL, 149, NULL, NULL, '2009-06-19 01:10:56.000000')
334
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 104, '2010-03-01 07:14:18.000000', 'politics of improving urban air quality', NULL, NULL, NULL, NULL, NULL, 150, NULL, NULL, '2009-06-19 00:42:38.000000')
335
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 105, '2010-03-01 07:14:18.000000', 'Perl developer''s dictionary', NULL, NULL, NULL, NULL, NULL, 151, NULL, NULL, '2009-06-19 00:13:13.000000')
336
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 106, '2010-03-01 07:14:18.000000', 'Andrテδゥ Poitiers', NULL, NULL, NULL, NULL, NULL, 152, NULL, NULL, '2009-06-18 23:58:14.000000')
337
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 107, '2010-03-01 07:14:18.000000', 'PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide', NULL, NULL, NULL, NULL, NULL, 153, NULL, NULL, '2009-06-18 23:43:08.000000')
338
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 108, '2010-03-01 07:14:18.000000', 'Python tutorial', NULL, NULL, NULL, NULL, NULL, 154, NULL, NULL, '2009-06-18 23:17:40.000000')
339
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 109, '2010-03-01 07:14:18.000000', 'Line shapes of paramagnetic resonances in ruby', NULL, NULL, NULL, NULL, NULL, 155, NULL, NULL, '2009-06-18 22:44:00.000000')
340
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 110, '2010-03-01 07:14:18.000000', 'Perl programmer''s reference', NULL, NULL, NULL, NULL, NULL, 156, NULL, NULL, '2009-06-18 22:19:34.000000')
341
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 111, '2010-03-01 07:14:18.000000', 'Technological capabilities in developing countries', NULL, NULL, NULL, NULL, NULL, 157, NULL, NULL, '2009-06-18 21:58:42.000000')
342
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000158', '2010-03-01 07:14:18.000000', 'phenomena of vagueness', NULL, NULL, NULL, NULL, NULL, 158, NULL, NULL, '2009-06-18 21:44:38.000000')
343
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000159', '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 159, NULL, NULL, '2009-06-18 21:10:02.000000')
344
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 112, '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 160, NULL, NULL, '2009-06-18 21:10:01.000000')
345
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 113, '2010-03-01 07:14:18.000000', 'Monty Python, Shakespeare, and English Renaissance drama', NULL, NULL, NULL, NULL, NULL, 161, NULL, NULL, '2009-06-18 20:37:58.000000')
346
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 114, '2010-03-01 07:14:18.000000', 'Analyzing computer system performance with PERL::PDQ', NULL, NULL, NULL, NULL, NULL, 162, NULL, NULL, '2009-06-18 20:29:54.000000')
347
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 115, '2010-03-01 07:14:18.000000', 'equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide', NULL, NULL, NULL, NULL, NULL, 163, NULL, NULL, '2009-06-18 20:16:44.000000')
348
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 116, '2010-03-01 07:14:18.000000', 'Stimulated optical emission in ruby', NULL, NULL, NULL, NULL, NULL, 164, NULL, NULL, '2009-06-18 20:05:25.000000')
349
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 117, '2010-03-01 07:14:18.000000', 'Strategic planning and risk analysis', NULL, NULL, NULL, NULL, NULL, 165, NULL, NULL, '2009-06-18 17:41:41.000000')
350
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 118, '2010-03-01 07:14:18.000000', 'Performance assertion checking', NULL, NULL, NULL, NULL, NULL, 166, NULL, NULL, '2009-06-18 17:34:03.000000')
351
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 119, '2010-03-01 07:14:18.000000', 'Spin-lattice relaxation time of ruby', NULL, NULL, NULL, NULL, NULL, 167, NULL, NULL, '2009-06-18 16:26:38.000000')
352
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000168', '2010-03-01 07:14:18.000000', 'Mourning Ruby', NULL, NULL, NULL, NULL, NULL, 168, NULL, NULL, '2009-06-18 16:25:25.000000')
353
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000169', '2010-03-01 07:14:18.000000', 'statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s', NULL, NULL, NULL, NULL, NULL, 169, NULL, NULL, '2009-06-18 15:53:44.000000')
354
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 120, '2010-03-01 07:14:18.000000', 'Professional Perl programming / Perl programming', NULL, NULL, NULL, NULL, NULL, 170, NULL, NULL, '2009-06-18 15:52:50.000000')
355
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 121, '2010-03-01 07:14:18.000000', 'Perl in a nutshell', NULL, NULL, NULL, NULL, NULL, 171, NULL, NULL, '2009-06-18 15:40:53.000000')
356
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 122, '2010-03-01 07:14:18.000000', 'Programming Web services with Perl', NULL, NULL, NULL, NULL, NULL, 172, NULL, NULL, '2009-06-18 15:34:21.000000')
357
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 123, '2010-03-01 07:14:18.000000', 'Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles', NULL, NULL, NULL, NULL, NULL, 173, NULL, NULL, '2009-06-18 15:08:06.000000')
358
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 124, '2010-03-01 07:14:18.000000', 'Europeras 3 & 4 / Europera', NULL, NULL, NULL, NULL, NULL, 174, NULL, NULL, '2009-06-18 15:05:43.000000')
359
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 125, '2010-03-01 07:14:18.000000', 'Retreats from realism in recent English drama', NULL, NULL, NULL, NULL, NULL, 175, NULL, NULL, '2009-06-18 15:03:06.000000')
360
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 126, '2010-03-01 07:14:18.000000', 'Python programming patterns', NULL, NULL, NULL, NULL, NULL, 176, NULL, NULL, '2009-06-18 14:52:11.000000')
361
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 127, '2010-03-01 07:14:18.000000', 'Beginning Perl for bioinformatics', NULL, NULL, NULL, NULL, NULL, 177, NULL, NULL, '2009-06-18 13:45:13.000000')
362
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000178', '2010-03-01 07:14:18.000000', 'Learning Perl', NULL, NULL, NULL, NULL, NULL, 178, NULL, NULL, '2009-06-18 13:45:11.000000')
363
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000179', '2010-03-01 07:14:18.000000', 'Effective awk programming', NULL, NULL, NULL, NULL, NULL, 179, NULL, NULL, '2009-06-18 13:45:09.000000')
364
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000180', '2010-03-01 07:14:18.000000', 'Python standard library / Annotated reference for Python 2.0', NULL, NULL, NULL, NULL, NULL, 180, NULL, NULL, '2009-06-18 13:45:04.000000')
365
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000181', '2010-03-01 07:14:18.000000', 'Programming Python', NULL, NULL, NULL, NULL, NULL, 181, NULL, NULL, '2009-06-18 13:45:04.000000')
366
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000182', '2010-03-01 07:14:18.000000', 'Perl CD bookshelf', NULL, NULL, NULL, NULL, NULL, 182, NULL, NULL, '2009-06-18 13:44:56.000000')
367
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000183', '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 183, NULL, NULL, '2009-06-18 13:44:55.000000')
368
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000184', '2010-03-01 07:14:18.000000', 'Sed & awk pocket reference / Sed and awk pocket reference', NULL, NULL, NULL, NULL, NULL, 184, NULL, NULL, '2009-06-18 13:44:54.000000')
369
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000185', '2010-03-01 07:14:18.000000', 'Perl power!', NULL, NULL, NULL, NULL, NULL, 185, NULL, NULL, '2009-06-18 13:41:37.000000')
370
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000186', '2010-03-01 07:14:18.000000', 'ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com', NULL, NULL, NULL, NULL, NULL, 186, NULL, NULL, '2008-12-19 17:52:47.000000')
371
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000187', '2010-03-01 07:14:18.000000', 'Welcome ― Ruby Enterprise Edition', NULL, NULL, NULL, NULL, NULL, 187, NULL, NULL, '2008-10-19 15:58:50.000000')
372
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000188', '2010-03-01 07:14:18.000000', 'Pythonクックブック', NULL, NULL, NULL, NULL, NULL, 188, NULL, NULL, '2008-08-22 00:27:29.000000')
373
+ Fixture Insert (0.2ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000189', '2010-03-01 07:14:18.000000', 'みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python', NULL, NULL, NULL, NULL, NULL, 189, NULL, NULL, '2008-08-22 00:20:59.000000')
374
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000190', '2010-03-01 07:14:18.000000', 'Django | The Web framework for perfectionists with deadlines', NULL, NULL, NULL, NULL, NULL, 190, NULL, NULL, '2008-05-20 13:06:31.000000')
375
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000191', '2010-03-01 07:14:18.000000', 'fac-back-opac - Google Code', NULL, NULL, NULL, NULL, NULL, 191, NULL, NULL, '2008-05-19 22:36:11.000000')
376
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784873113241, '2010-03-01 07:14:18.000000', 'Rubyクックブック', NULL, NULL, NULL, '2007-04-27', NULL, 192, NULL, NULL, '2008-03-05 01:37:55.000000')
377
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "isbn10", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797340044, 4797340045, '2010-03-01 07:14:18.000000', 'Rubyレシピブック', NULL, NULL, NULL, '2007-02-01', NULL, 193, NULL, NULL, '2008-03-05 01:30:39.000000')
378
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000194', '2010-03-01 07:14:18.000000', '初めてのPerl 第3版', NULL, NULL, NULL, NULL, NULL, 194, NULL, NULL, '2007-11-19 17:56:37.000000')
379
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000195', '2010-03-01 07:14:18.000000', '続・初めてのPerl 改訂版', NULL, NULL, NULL, NULL, NULL, 195, NULL, NULL, '2007-11-19 17:55:42.000000')
380
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797336610, '2010-03-01 07:14:18.000000', 'たのしいRuby 第2版 Rubyではじめる気軽なプログラミング', NULL, NULL, NULL, '2006-08-05', NULL, 196, NULL, NULL, '2007-11-19 17:55:41.000000')
381
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', 'Ruby', NULL, NULL, NULL, NULL, NULL, 197, NULL, NULL, '2007-11-19 17:55:41.000000')
382
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', '紅玉の本', NULL, NULL, NULL, NULL, NULL, 198, NULL, NULL, '2007-11-19 17:55:41.000000')
383
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn") VALUES (1, 1, 9876543210201, '2010-03-01 07:14:18.000000', 'テスト雑誌2005年1月号', NULL, NULL, NULL, NULL, NULL, 201, NULL, NULL, '2007-11-19 17:55:41.000000', 3, '09130000')
384
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn", "serial_number", "volume_number", "issue_number") VALUES (1, 1, 9876543210202, '2010-03-01 07:14:18.000000', 'テスト雑誌2月号', NULL, NULL, NULL, NULL, NULL, 202, NULL, NULL, '2007-11-19 17:55:41.000000', 3, 12345678, 2, 1, 2)
385
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id") VALUES (1, 1, 9876543210203, '2010-03-01 07:14:18.000000', 'テスト単行本記事2005', NULL, NULL, NULL, NULL, NULL, 203, NULL, NULL, '2010-03-03 17:00:00.000000', 1)
386
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890001, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事1', NULL, NULL, NULL, NULL, NULL, 204, NULL, NULL, '2010-03-03 20:00:00.000000')
387
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890002, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事2', NULL, NULL, NULL, NULL, NULL, 205, NULL, NULL, '2010-03-03 20:00:00.000000')
388
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890003, '2010-03-03 11:00:00.000000', 'テスト雑誌2月号の記事1', NULL, NULL, NULL, NULL, NULL, 206, NULL, NULL, '2010-03-03 20:00:00.000000')
389
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9876543210207, '2010-03-03 11:00:00.000000', '試験単行本', NULL, NULL, NULL, NULL, NULL, 207, NULL, NULL, '2010-03-03 20:00:00.000000')
390
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-16 02:00:00.000000', 'ある出版物', NULL, NULL, NULL, NULL, NULL, 208, NULL, NULL, '2010-03-16 11:00:00.000000')
391
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用1', NULL, NULL, NULL, NULL, NULL, 209, NULL, NULL, '2010-03-19 13:00:00.000000', 4)
392
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用2', NULL, NULL, NULL, NULL, NULL, 210, NULL, NULL, '2010-03-19 13:00:00.000000', 4, 't')
393
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用1', NULL, NULL, NULL, NULL, NULL, 211, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
394
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用2', NULL, NULL, NULL, NULL, NULL, 212, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
395
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用1', NULL, NULL, NULL, NULL, NULL, 213, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 't')
396
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用2', NULL, NULL, NULL, NULL, NULL, 214, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 'f')
397
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 215, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 't')
398
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 216, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
399
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', 'Flickr', NULL, NULL, NULL, NULL, 'http://www.flickr.com/photos/japan_library_association/sets/72157626376861041/', 217, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
400
+  (3.1ms) commit transaction
401
+  (0.0ms) begin transaction
402
+ Manifestation Load (0.4ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 1]]
403
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_google_book_search.html.erb (1.8ms)
404
+  (0.1ms) rollback transaction
405
+  (0.0ms) begin transaction
406
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 22]]
407
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_youtube.html.erb (4.4ms)
408
+  (0.1ms) rollback transaction
409
+  (0.0ms) begin transaction
410
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 23]]
411
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_nicovideo.html.erb (0.7ms)
412
+  (0.1ms) rollback transaction
413
+  (0.1ms) begin transaction
414
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 217]]
415
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_flickr.html.erb (1.7ms)
416
+  (0.1ms) rollback transaction
417
+ Connecting to database specified by database.yml
418
+  (0.7ms) begin transaction
419
+ Fixture Delete (5.9ms) DELETE FROM "manifestations"
420
+ Fixture Insert (0.6ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "start_page", "end_page", "repository_content") VALUES (1, 1, '4798002062', '2007-11-19 07:59:00.293393', 'よくわかる最新Webサービス技術', NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2007-11-19 07:59:00.293393', 1, 100, 't')
421
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "repository_content") VALUES (1, 1, '4915724824', '2007-11-19 07:59:01.991512', '情報通信ハンドブック2005', NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, '2007-11-19 07:59:01.991512', 'f')
422
+ Fixture Insert (0.2ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4897063590', '2007-11-19 07:59:02.618359', 'これからの生命科学研究者のためのバイオ特許入門講座', NULL, NULL, NULL, NULL, 'http://www.slis.keio.ac.jp/', 3, NULL, NULL, '2007-11-19 07:59:02.618359')
423
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0471412791', '2007-11-19 07:59:03.275738', 'THE BIOTECH INVESTOR''S BIBLE', NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, '2007-11-19 07:59:03.275738')
424
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:04.333183', '顧客満足型マーケティングの構図', NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, '2007-11-19 07:59:04.333183')
425
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:05.255684', '仕組み革新の時代', NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, '2007-11-19 07:59:05.255684')
426
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0470844701', '2007-11-19 07:59:06.892741', 'dictionary of e-business', NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, '2007-11-19 07:59:06.892741')
427
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4798101028', '2007-11-19 07:59:07.463333', 'Webサービス完全解説', NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, '2007-11-19 07:59:07.463333')
428
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4641143331', '2007-11-19 07:59:08.166195', '逐条解説不正競争防止法', NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, '2007-11-19 07:59:08.166195')
429
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '9784774127804', '2007-11-19 07:59:09.799724', 'Apache Lucene入門 : Java・オープンソース・全文検索システムの構築', NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, '2007-11-19 07:59:09.799724')
430
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, '4822281167', '2007-11-19 07:59:20.799724', 'Webサービス完全構築ガイド', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, '2007-11-19 07:59:20.799724', 2)
431
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2007-11-19 07:59:21.799724', 'YouTube - Open Source ILS Song', NULL, NULL, NULL, NULL, 'http://jp.youtube.com/watch?v=BSHBzd9ftDE', 22, NULL, NULL, '2008-04-16 15:34:01.000000', 1)
432
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2008-04-16 15:34:01.000000', '世界の美しい図書館集めてみた【第一弾】', NULL, NULL, NULL, NULL, 'http://www.nicovideo.jp/watch/sm3015373', 23, NULL, NULL, '2007-11-19 07:58:58.799724', 4)
433
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 65, '2010-03-01 07:14:18.000000', 'CGI基礎講座 : Perl・プログラミング・日本語処理', NULL, NULL, NULL, NULL, NULL, 101, NULL, NULL, '2010-02-21 15:47:09.000000')
434
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 66, '2010-03-01 07:14:18.000000', 'CGIレスキュー実践Perlプログラミング : Web裏技', NULL, NULL, NULL, NULL, NULL, 102, NULL, NULL, '2010-02-21 14:57:08.000000')
435
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 67, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.2', NULL, NULL, NULL, NULL, NULL, 103, NULL, NULL, '2010-02-21 10:51:48.000000')
436
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 68, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.1', NULL, NULL, NULL, NULL, NULL, 104, NULL, NULL, '2010-02-21 10:51:33.000000')
437
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 69, '2010-03-01 07:14:18.000000', '初めてのPerl. 続', NULL, NULL, NULL, NULL, NULL, 105, NULL, NULL, '2010-02-21 10:48:14.000000')
438
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 70, '2010-03-01 07:14:18.000000', 'Perl & XML', NULL, NULL, NULL, NULL, NULL, 106, NULL, NULL, '2010-02-21 10:45:48.000000')
439
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 71, '2010-03-01 07:14:18.000000', 'はじめてのPerlモジュール : 厳選実用モジュール集', NULL, NULL, NULL, NULL, NULL, 107, NULL, NULL, '2010-02-21 09:59:01.000000')
440
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000108', '2010-03-01 07:14:18.000000', 'Perl 5パワフルテクニック大全集', NULL, NULL, NULL, NULL, NULL, 108, NULL, NULL, '2010-02-21 08:13:17.000000')
441
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000109', '2010-03-01 07:14:18.000000', 'CGI/Perlパワープログラミング', NULL, NULL, NULL, NULL, NULL, 109, NULL, NULL, '2010-02-20 17:26:08.000000')
442
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 72, '2010-03-01 07:14:18.000000', 'Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング', NULL, NULL, NULL, NULL, NULL, 110, NULL, NULL, '2010-02-19 13:09:56.000000')
443
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 73, '2010-03-01 07:14:18.000000', 'すぐわかるPerl', NULL, NULL, NULL, NULL, NULL, 111, NULL, NULL, '2010-02-19 13:07:28.000000')
444
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 74, '2010-03-01 07:14:18.000000', 'CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう', NULL, NULL, NULL, NULL, NULL, 112, NULL, NULL, '2010-02-19 13:06:51.000000')
445
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 75, '2010-03-01 07:14:18.000000', 'プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java', NULL, NULL, NULL, NULL, NULL, 113, NULL, NULL, '2010-02-19 11:02:27.000000')
446
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756137470, '2010-03-01 07:14:18.000000', 'Rubyを256倍使うための本. 魔道編', NULL, NULL, NULL, '2001-03-20', NULL, 114, NULL, NULL, '2010-02-19 05:46:08.000000')
447
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 77, '2010-03-01 07:14:18.000000', '入門Perl', NULL, NULL, NULL, NULL, NULL, 115, NULL, NULL, '2010-02-19 05:40:17.000000')
448
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756100917, '2010-03-01 07:14:18.000000', 'sed & awkプログラミング : UNIX power tools', NULL, NULL, NULL, '1991-12-24', NULL, 116, NULL, NULL, '2010-02-19 05:39:01.000000')
449
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 79, '2010-03-01 07:14:18.000000', 'Perlの達人', NULL, NULL, NULL, NULL, NULL, 117, NULL, NULL, '2010-02-18 10:23:27.000000')
450
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000118', '2010-03-01 07:14:18.000000', 'ナチ強制・絶滅収容所 : 18施設内の生と死', NULL, NULL, NULL, NULL, NULL, 118, NULL, NULL, '2010-02-17 01:12:08.000000')
451
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000119', '2010-03-01 07:14:18.000000', 'Perl基礎講座', NULL, NULL, NULL, NULL, NULL, 119, NULL, NULL, '2010-02-16 04:30:37.000000')
452
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784274063855, '2010-03-01 07:14:18.000000', 'Rubyプログラミング入門', NULL, NULL, NULL, '2000-10-01', NULL, 120, NULL, NULL, '2010-02-16 04:29:59.000000')
453
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 81, '2010-03-01 07:14:18.000000', 'Django×Python', NULL, NULL, NULL, NULL, NULL, 121, NULL, NULL, '2010-01-30 06:22:35.000000')
454
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 82, '2010-03-01 07:14:18.000000', 'みんなのPython', NULL, NULL, NULL, NULL, NULL, 122, NULL, NULL, '2010-01-30 06:17:32.000000')
455
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 83, '2010-03-01 07:14:18.000000', 'Rubyでgroonga使って全文検索 - ラングバ', NULL, NULL, NULL, NULL, NULL, 123, NULL, NULL, '2009-10-25 13:20:34.000000')
456
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 84, '2010-03-01 07:14:18.000000', 'まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)', NULL, NULL, NULL, NULL, NULL, 124, NULL, NULL, '2009-10-20 13:46:44.000000')
457
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 85, '2010-03-01 07:14:18.000000', 'Ruby on Rails入門 : 優しいRailsの育て方', NULL, NULL, NULL, NULL, NULL, 125, NULL, NULL, '2009-10-16 05:16:48.000000')
458
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 86, '2010-03-01 07:14:18.000000', 'Ruby Cookbook', NULL, NULL, NULL, NULL, NULL, 126, NULL, NULL, '2009-06-29 12:44:11.000000')
459
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 87, '2010-03-01 07:14:18.000000', 'CGI programming on the World Wide Web', NULL, NULL, NULL, NULL, NULL, 127, NULL, NULL, '2009-06-19 13:45:14.000000')
460
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000128', '2010-03-01 07:14:18.000000', 'Genomic Perl', NULL, NULL, NULL, NULL, NULL, 128, NULL, NULL, '2009-06-19 13:27:46.000000')
461
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000129', '2010-03-01 07:14:18.000000', 'Indians of the Pacific Northwest', NULL, NULL, NULL, NULL, NULL, 129, NULL, NULL, '2009-06-19 12:16:23.000000')
462
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 88, '2010-03-01 07:14:18.000000', 'Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M', NULL, NULL, NULL, NULL, NULL, 130, NULL, NULL, '2009-06-19 12:03:29.000000')
463
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 89, '2010-03-01 07:14:18.000000', 'International Symposium Genes and Chromosomes Structure and Function', NULL, NULL, NULL, NULL, NULL, 131, NULL, NULL, '2009-06-19 12:02:48.000000')
464
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 90, '2010-03-01 07:14:18.000000', 'Perl black book, 2nd edition', NULL, NULL, NULL, NULL, NULL, 132, NULL, NULL, '2009-06-19 11:42:02.000000')
465
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 91, '2010-03-01 07:14:18.000000', 'Python scripting for computational science', NULL, NULL, NULL, NULL, NULL, 133, NULL, NULL, '2009-06-19 11:18:01.000000')
466
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 92, '2010-03-01 07:14:18.000000', 'Tests on a gold ore from the Ruby Basin, Black Hills', NULL, NULL, NULL, NULL, NULL, 134, NULL, NULL, '2009-06-19 11:06:07.000000')
467
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 93, '2010-03-01 07:14:18.000000', 'Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm', NULL, NULL, NULL, NULL, NULL, 135, NULL, NULL, '2009-06-19 10:54:21.000000')
468
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 94, '2010-03-01 07:14:18.000000', 'Three little words [sound recording] / Nevertheless (I''m in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who''s sorry now? / My sunny Tennessee / So long Oolong / Three little words', NULL, NULL, NULL, NULL, NULL, 136, NULL, NULL, '2009-06-19 10:46:46.000000')
469
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 95, '2010-03-01 07:14:18.000000', 'Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond', NULL, NULL, NULL, NULL, NULL, 137, NULL, NULL, '2009-06-19 10:18:59.000000')
470
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000138', '2010-03-01 07:14:18.000000', 'CGI programming with Perl', NULL, NULL, NULL, NULL, NULL, 138, NULL, NULL, '2009-06-19 09:19:08.000000')
471
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000139', '2010-03-01 07:14:18.000000', 'Python and XML / Python & XML / XML processing with Python', NULL, NULL, NULL, NULL, NULL, 139, NULL, NULL, '2009-06-19 09:19:02.000000')
472
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 96, '2010-03-01 07:14:18.000000', 'Perl cookbook / Solutions and examples for Perl programmers', NULL, NULL, NULL, NULL, NULL, 140, NULL, NULL, '2009-06-19 09:19:01.000000')
473
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 97, '2010-03-01 07:14:18.000000', 'Mastering Perl/Tk / Perl/Tk', NULL, NULL, NULL, NULL, NULL, 141, NULL, NULL, '2009-06-19 09:19:00.000000')
474
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 98, '2010-03-01 07:14:18.000000', 'Mastering algorithms with Perl / Practical programming through computer science', NULL, NULL, NULL, NULL, NULL, 142, NULL, NULL, '2009-06-19 09:18:58.000000')
475
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 99, '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 143, NULL, NULL, '2009-06-19 09:18:45.000000')
476
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 100, '2010-03-01 07:14:18.000000', 'Fort Worth & Tarrant County / Fort Worth and Tarrant County', NULL, NULL, NULL, NULL, NULL, 144, NULL, NULL, '2009-06-19 07:49:42.000000')
477
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 101, '2010-03-01 07:14:18.000000', 'Monty Python''s Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)', NULL, NULL, NULL, NULL, NULL, 145, NULL, NULL, '2009-06-19 06:44:35.000000')
478
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 102, '2010-03-01 07:14:18.000000', 'AWK programming language', NULL, NULL, NULL, NULL, NULL, 146, NULL, NULL, '2009-06-19 06:28:27.000000')
479
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 103, '2010-03-01 07:14:18.000000', 'Toting the lead row', NULL, NULL, NULL, NULL, NULL, 147, NULL, NULL, '2009-06-19 02:16:22.000000')
480
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000148', '2010-03-01 07:14:18.000000', 'Afro-American blues and game songs', NULL, NULL, NULL, NULL, NULL, 148, NULL, NULL, '2009-06-19 02:09:17.000000')
481
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000149', '2010-03-01 07:14:18.000000', 'Perl/Tk pocket reference', NULL, NULL, NULL, NULL, NULL, 149, NULL, NULL, '2009-06-19 01:10:56.000000')
482
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 104, '2010-03-01 07:14:18.000000', 'politics of improving urban air quality', NULL, NULL, NULL, NULL, NULL, 150, NULL, NULL, '2009-06-19 00:42:38.000000')
483
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 105, '2010-03-01 07:14:18.000000', 'Perl developer''s dictionary', NULL, NULL, NULL, NULL, NULL, 151, NULL, NULL, '2009-06-19 00:13:13.000000')
484
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 106, '2010-03-01 07:14:18.000000', 'Andrテδゥ Poitiers', NULL, NULL, NULL, NULL, NULL, 152, NULL, NULL, '2009-06-18 23:58:14.000000')
485
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 107, '2010-03-01 07:14:18.000000', 'PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide', NULL, NULL, NULL, NULL, NULL, 153, NULL, NULL, '2009-06-18 23:43:08.000000')
486
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 108, '2010-03-01 07:14:18.000000', 'Python tutorial', NULL, NULL, NULL, NULL, NULL, 154, NULL, NULL, '2009-06-18 23:17:40.000000')
487
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 109, '2010-03-01 07:14:18.000000', 'Line shapes of paramagnetic resonances in ruby', NULL, NULL, NULL, NULL, NULL, 155, NULL, NULL, '2009-06-18 22:44:00.000000')
488
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 110, '2010-03-01 07:14:18.000000', 'Perl programmer''s reference', NULL, NULL, NULL, NULL, NULL, 156, NULL, NULL, '2009-06-18 22:19:34.000000')
489
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 111, '2010-03-01 07:14:18.000000', 'Technological capabilities in developing countries', NULL, NULL, NULL, NULL, NULL, 157, NULL, NULL, '2009-06-18 21:58:42.000000')
490
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000158', '2010-03-01 07:14:18.000000', 'phenomena of vagueness', NULL, NULL, NULL, NULL, NULL, 158, NULL, NULL, '2009-06-18 21:44:38.000000')
491
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000159', '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 159, NULL, NULL, '2009-06-18 21:10:02.000000')
492
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 112, '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 160, NULL, NULL, '2009-06-18 21:10:01.000000')
493
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 113, '2010-03-01 07:14:18.000000', 'Monty Python, Shakespeare, and English Renaissance drama', NULL, NULL, NULL, NULL, NULL, 161, NULL, NULL, '2009-06-18 20:37:58.000000')
494
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 114, '2010-03-01 07:14:18.000000', 'Analyzing computer system performance with PERL::PDQ', NULL, NULL, NULL, NULL, NULL, 162, NULL, NULL, '2009-06-18 20:29:54.000000')
495
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 115, '2010-03-01 07:14:18.000000', 'equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide', NULL, NULL, NULL, NULL, NULL, 163, NULL, NULL, '2009-06-18 20:16:44.000000')
496
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 116, '2010-03-01 07:14:18.000000', 'Stimulated optical emission in ruby', NULL, NULL, NULL, NULL, NULL, 164, NULL, NULL, '2009-06-18 20:05:25.000000')
497
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 117, '2010-03-01 07:14:18.000000', 'Strategic planning and risk analysis', NULL, NULL, NULL, NULL, NULL, 165, NULL, NULL, '2009-06-18 17:41:41.000000')
498
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 118, '2010-03-01 07:14:18.000000', 'Performance assertion checking', NULL, NULL, NULL, NULL, NULL, 166, NULL, NULL, '2009-06-18 17:34:03.000000')
499
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 119, '2010-03-01 07:14:18.000000', 'Spin-lattice relaxation time of ruby', NULL, NULL, NULL, NULL, NULL, 167, NULL, NULL, '2009-06-18 16:26:38.000000')
500
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000168', '2010-03-01 07:14:18.000000', 'Mourning Ruby', NULL, NULL, NULL, NULL, NULL, 168, NULL, NULL, '2009-06-18 16:25:25.000000')
501
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000169', '2010-03-01 07:14:18.000000', 'statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s', NULL, NULL, NULL, NULL, NULL, 169, NULL, NULL, '2009-06-18 15:53:44.000000')
502
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 120, '2010-03-01 07:14:18.000000', 'Professional Perl programming / Perl programming', NULL, NULL, NULL, NULL, NULL, 170, NULL, NULL, '2009-06-18 15:52:50.000000')
503
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 121, '2010-03-01 07:14:18.000000', 'Perl in a nutshell', NULL, NULL, NULL, NULL, NULL, 171, NULL, NULL, '2009-06-18 15:40:53.000000')
504
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 122, '2010-03-01 07:14:18.000000', 'Programming Web services with Perl', NULL, NULL, NULL, NULL, NULL, 172, NULL, NULL, '2009-06-18 15:34:21.000000')
505
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 123, '2010-03-01 07:14:18.000000', 'Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles', NULL, NULL, NULL, NULL, NULL, 173, NULL, NULL, '2009-06-18 15:08:06.000000')
506
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 124, '2010-03-01 07:14:18.000000', 'Europeras 3 & 4 / Europera', NULL, NULL, NULL, NULL, NULL, 174, NULL, NULL, '2009-06-18 15:05:43.000000')
507
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 125, '2010-03-01 07:14:18.000000', 'Retreats from realism in recent English drama', NULL, NULL, NULL, NULL, NULL, 175, NULL, NULL, '2009-06-18 15:03:06.000000')
508
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 126, '2010-03-01 07:14:18.000000', 'Python programming patterns', NULL, NULL, NULL, NULL, NULL, 176, NULL, NULL, '2009-06-18 14:52:11.000000')
509
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 127, '2010-03-01 07:14:18.000000', 'Beginning Perl for bioinformatics', NULL, NULL, NULL, NULL, NULL, 177, NULL, NULL, '2009-06-18 13:45:13.000000')
510
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000178', '2010-03-01 07:14:18.000000', 'Learning Perl', NULL, NULL, NULL, NULL, NULL, 178, NULL, NULL, '2009-06-18 13:45:11.000000')
511
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000179', '2010-03-01 07:14:18.000000', 'Effective awk programming', NULL, NULL, NULL, NULL, NULL, 179, NULL, NULL, '2009-06-18 13:45:09.000000')
512
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000180', '2010-03-01 07:14:18.000000', 'Python standard library / Annotated reference for Python 2.0', NULL, NULL, NULL, NULL, NULL, 180, NULL, NULL, '2009-06-18 13:45:04.000000')
513
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000181', '2010-03-01 07:14:18.000000', 'Programming Python', NULL, NULL, NULL, NULL, NULL, 181, NULL, NULL, '2009-06-18 13:45:04.000000')
514
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000182', '2010-03-01 07:14:18.000000', 'Perl CD bookshelf', NULL, NULL, NULL, NULL, NULL, 182, NULL, NULL, '2009-06-18 13:44:56.000000')
515
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000183', '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 183, NULL, NULL, '2009-06-18 13:44:55.000000')
516
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000184', '2010-03-01 07:14:18.000000', 'Sed & awk pocket reference / Sed and awk pocket reference', NULL, NULL, NULL, NULL, NULL, 184, NULL, NULL, '2009-06-18 13:44:54.000000')
517
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000185', '2010-03-01 07:14:18.000000', 'Perl power!', NULL, NULL, NULL, NULL, NULL, 185, NULL, NULL, '2009-06-18 13:41:37.000000')
518
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000186', '2010-03-01 07:14:18.000000', 'ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com', NULL, NULL, NULL, NULL, NULL, 186, NULL, NULL, '2008-12-19 17:52:47.000000')
519
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000187', '2010-03-01 07:14:18.000000', 'Welcome ― Ruby Enterprise Edition', NULL, NULL, NULL, NULL, NULL, 187, NULL, NULL, '2008-10-19 15:58:50.000000')
520
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000188', '2010-03-01 07:14:18.000000', 'Pythonクックブック', NULL, NULL, NULL, NULL, NULL, 188, NULL, NULL, '2008-08-22 00:27:29.000000')
521
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000189', '2010-03-01 07:14:18.000000', 'みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python', NULL, NULL, NULL, NULL, NULL, 189, NULL, NULL, '2008-08-22 00:20:59.000000')
522
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000190', '2010-03-01 07:14:18.000000', 'Django | The Web framework for perfectionists with deadlines', NULL, NULL, NULL, NULL, NULL, 190, NULL, NULL, '2008-05-20 13:06:31.000000')
523
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000191', '2010-03-01 07:14:18.000000', 'fac-back-opac - Google Code', NULL, NULL, NULL, NULL, NULL, 191, NULL, NULL, '2008-05-19 22:36:11.000000')
524
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784873113241, '2010-03-01 07:14:18.000000', 'Rubyクックブック', NULL, NULL, NULL, '2007-04-27', NULL, 192, NULL, NULL, '2008-03-05 01:37:55.000000')
525
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "isbn10", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797340044, 4797340045, '2010-03-01 07:14:18.000000', 'Rubyレシピブック', NULL, NULL, NULL, '2007-02-01', NULL, 193, NULL, NULL, '2008-03-05 01:30:39.000000')
526
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000194', '2010-03-01 07:14:18.000000', '初めてのPerl 第3版', NULL, NULL, NULL, NULL, NULL, 194, NULL, NULL, '2007-11-19 17:56:37.000000')
527
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000195', '2010-03-01 07:14:18.000000', '続・初めてのPerl 改訂版', NULL, NULL, NULL, NULL, NULL, 195, NULL, NULL, '2007-11-19 17:55:42.000000')
528
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797336610, '2010-03-01 07:14:18.000000', 'たのしいRuby 第2版 Rubyではじめる気軽なプログラミング', NULL, NULL, NULL, '2006-08-05', NULL, 196, NULL, NULL, '2007-11-19 17:55:41.000000')
529
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', 'Ruby', NULL, NULL, NULL, NULL, NULL, 197, NULL, NULL, '2007-11-19 17:55:41.000000')
530
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', '紅玉の本', NULL, NULL, NULL, NULL, NULL, 198, NULL, NULL, '2007-11-19 17:55:41.000000')
531
+ Fixture Insert (0.2ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn") VALUES (1, 1, 9876543210201, '2010-03-01 07:14:18.000000', 'テスト雑誌2005年1月号', NULL, NULL, NULL, NULL, NULL, 201, NULL, NULL, '2007-11-19 17:55:41.000000', 3, '09130000')
532
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn", "serial_number", "volume_number", "issue_number") VALUES (1, 1, 9876543210202, '2010-03-01 07:14:18.000000', 'テスト雑誌2月号', NULL, NULL, NULL, NULL, NULL, 202, NULL, NULL, '2007-11-19 17:55:41.000000', 3, 12345678, 2, 1, 2)
533
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id") VALUES (1, 1, 9876543210203, '2010-03-01 07:14:18.000000', 'テスト単行本記事2005', NULL, NULL, NULL, NULL, NULL, 203, NULL, NULL, '2010-03-03 17:00:00.000000', 1)
534
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890001, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事1', NULL, NULL, NULL, NULL, NULL, 204, NULL, NULL, '2010-03-03 20:00:00.000000')
535
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890002, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事2', NULL, NULL, NULL, NULL, NULL, 205, NULL, NULL, '2010-03-03 20:00:00.000000')
536
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890003, '2010-03-03 11:00:00.000000', 'テスト雑誌2月号の記事1', NULL, NULL, NULL, NULL, NULL, 206, NULL, NULL, '2010-03-03 20:00:00.000000')
537
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9876543210207, '2010-03-03 11:00:00.000000', '試験単行本', NULL, NULL, NULL, NULL, NULL, 207, NULL, NULL, '2010-03-03 20:00:00.000000')
538
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-16 02:00:00.000000', 'ある出版物', NULL, NULL, NULL, NULL, NULL, 208, NULL, NULL, '2010-03-16 11:00:00.000000')
539
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用1', NULL, NULL, NULL, NULL, NULL, 209, NULL, NULL, '2010-03-19 13:00:00.000000', 4)
540
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用2', NULL, NULL, NULL, NULL, NULL, 210, NULL, NULL, '2010-03-19 13:00:00.000000', 4, 't')
541
+ Fixture Insert (0.2ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用1', NULL, NULL, NULL, NULL, NULL, 211, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
542
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用2', NULL, NULL, NULL, NULL, NULL, 212, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
543
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用1', NULL, NULL, NULL, NULL, NULL, 213, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 't')
544
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用2', NULL, NULL, NULL, NULL, NULL, 214, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 'f')
545
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 215, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 't')
546
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 216, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
547
+ Fixture Insert (0.1ms) INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', 'Flickr', NULL, NULL, NULL, NULL, 'http://www.flickr.com/photos/japan_library_association/sets/72157626376861041/', 217, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
548
+  (7.3ms) commit transaction
549
+  (0.1ms) begin transaction
550
+ Manifestation Load (0.4ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 1]]
551
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_google_book_search.html.erb (2.1ms)
552
+  (0.1ms) rollback transaction
553
+  (0.0ms) begin transaction
554
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 22]]
555
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_youtube.html.erb (8.0ms)
556
+  (0.1ms) rollback transaction
557
+  (0.0ms) begin transaction
558
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 23]]
559
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_nicovideo.html.erb (0.8ms)
560
+  (0.1ms) rollback transaction
561
+  (0.0ms) begin transaction
562
+ Manifestation Load (0.1ms) SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 217]]
563
+ Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_flickr.html.erb (1.2ms)
564
+  (0.1ms) rollback transaction
@@ -29,7 +29,7 @@ describe EnjuManifestationViewer::ManifestationViewerHelper do
29
29
  helper.embed_content(manifestations(:manifestation_00217)).should =~ /<object width="400" height="300"><param name="flashvars"/
30
30
  end
31
31
 
32
- it "should render scribd template" do
33
- helper.embed_content(manifestations(:manifestation_00001)).should =~ /<td colspan="2" style="width: 700px">/
34
- end
32
+ #it "should render scribd template" do
33
+ # helper.embed_content(manifestations(:manifestation_00001)).should =~ /<td colspan="2" style="width: 700px">/
34
+ #end
35
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enju_manifestation_viewer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre4
4
+ version: 0.1.0.pre5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kosuke Tanabe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-03-13 00:00:00.000000000 Z
11
+ date: 2013-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.0.pre24
33
+ version: 0.1.0.pre28
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.0.pre24
40
+ version: 0.1.0.pre28
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: sqlite3
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -93,7 +93,6 @@ files:
93
93
  - app/views/manifestations/_scribd.html.erb
94
94
  - app/views/manifestations/_youtube.html.erb
95
95
  - config/routes.rb
96
- - db/migrate/20090704145024_enju_scribd_fu_migration.rb
97
96
  - lib/enju_manifestation_viewer/engine.rb
98
97
  - lib/enju_manifestation_viewer/manifestation_viewer_helper.rb
99
98
  - lib/enju_manifestation_viewer/version.rb
@@ -131,6 +130,7 @@ files:
131
130
  - spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb
132
131
  - spec/dummy/db/schema.rb
133
132
  - spec/dummy/db/test.sqlite3
133
+ - spec/dummy/log/test.log
134
134
  - spec/dummy/public/404.html
135
135
  - spec/dummy/public/422.html
136
136
  - spec/dummy/public/500.html
@@ -193,6 +193,7 @@ test_files:
193
193
  - spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb
194
194
  - spec/dummy/db/schema.rb
195
195
  - spec/dummy/db/test.sqlite3
196
+ - spec/dummy/log/test.log
196
197
  - spec/dummy/public/404.html
197
198
  - spec/dummy/public/422.html
198
199
  - spec/dummy/public/500.html
@@ -1,11 +0,0 @@
1
- class EnjuScribdFuMigration < ActiveRecord::Migration
2
- def self.up
3
- add_column :manifestations, :ipaper_id, :integer
4
- add_column :manifestations, :ipaper_access_key, :string
5
- end
6
-
7
- def self.down
8
- remove_column :manifestations, :ipaper_id
9
- remove_column :manifestations, :ipaper_access_key
10
- end
11
- end