-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbooks.sql
524 lines (499 loc) · 18.4 KB
/
books.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
--
-- Books table - SQLite platform
--
BEGIN TRANSACTION;
DROP TABLE IF EXISTS Books;
CREATE TABLE Books (
ISBN NVARCHAR (20) PRIMARY KEY
NOT NULL,
Title NVARCHAR (100) NOT NULL,
Authors NVARCHAR (100),
Status NVARCHAR (15) NOT NULL,
ReleseDate DATE,
Pages INTEGER,
Price DECIMAL (12, 2),
Currency NVARCHAR (10),
Imported DATETIME,
Description NVARCHAR (2000)
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-0201633610',
'Design Patterns: Elements of Reusable Object-Oriented Software',
'Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides',
'on-shelf',
'1994-11-01',
395,
54.9,
'USD',
'2017-06-30',
'Modern classic in the literature of object-oriented development. Offering timeless and elegant solutions to common problems in software design. It describes 23 patterns for object creation, composing them, and coordinating control flow between them.'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-0201485677',
'Refactoring: Improving the Design of Existing Code',
'Martin Fowler, Kent Beck, John Brant, William Opdyke, Don Roberts',
'on-shelf',
'1999-07-01',
464,
52.98,
'USD',
'2017-07-09',
'Book shows how refactoring can make object-oriented code simpler and easier to maintain. Provides a catalog of tips for improving code.'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-0131177055',
'Working Effectively with Legacy Code',
'Michael Feathers',
'on-shelf',
'2004-10-01',
464,
52.69,
'USD',
'2017-08-07',
'This book describes a set of disciplines, concepts, and attitudes that you will carry with you for the rest of your career and that will help you to turn systems that gradually degrade into systems that gradually improve.'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-0321127426',
'Patterns of Enterprise Application Architecture',
'Martin Fowler',
'avaliable',
'2002-11-01',
560,
55.99,
'USD',
'2017-08-20',
'This book is written in direct response to the stiff challenges that face enterprise application developers. Author distills over forty recurring solutions into patterns. Indispensable handbook of solutions that are applicable to any enterprise application platform.'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1849689121',
'Applied Architecture Patterns on the Microsoft Platform (Second Edition)',
'Andre Dovgal, Dmitri Olechko, Gregor Noriskin',
'avaliable',
'2014-07-01',
456,
23.24,
'EUR',
'2017-09-18',
'Work with various Microsoft technologies using Applied Architecture Patterns'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-0735619678',
'Code Complete: A Practical Handbook of Software Construction',
'Steve McConnell',
'avaliable',
'2004-06-01',
960,
40.97,
'USD',
'2017-09-18',
'Author synthesizes the most effective techniques and must-know principles into clear, pragmatic book which will inform and stimulate your thinking and help you build the highest quality software'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-0132350884',
'Clean Code: A Handbook of Agile Software Craftsmanship',
'Robert C. Martin',
'on-shelf',
'2008-08-01',
464,
47.49,
'USD',
'2017-09-19',
'Best agile practices of cleaning code “on the fly” that will instill within you the values of a software craftsman and make you a better programmer—but only if you work at it.'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1941266106',
'More Coding in Delphi',
'Nick Hodges',
'on-shelf',
'2015-12-01',
246,
25.99,
'USD',
'2017-10-01',
'Picks up where previous "Coding in Delphi" left of, continuing to illustrate good, sound coding techniques including design patterns and principles'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1941266038',
'Coding in Delphi',
'Nick Hodges',
'on-shelf',
'2014-04-01',
236,
24.99,
'USD',
'2017-10-05',
'All about writing Delphi code. It''s just about how to use the language in the most effective way to write clean, testable, maintainable Delphi code'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1785287428',
'Delphi Cookbook - Second Edition',
'Daniele Teti',
'avaliable',
'2016-06-01',
470,
30.13,
'EUR',
'2017-10-18',
'Over 60 hands-on recipes to help you master the power of Delphi for cross-platform and mobile development on multiple platforms'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1786466150',
'.NET Design Patterns',
'Praseed Pai, Shine Xavier',
'avaliable',
'2017-01-01',
314,
26.69,
'EUR',
'2017-10-27',
'Explore the world of .NET design patterns and bring the benefits that the right patterns can offer to your toolkit today'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1786460165',
'Expert Delphi',
'Paweł Głowacki',
'avaliable',
'2017-06-01',
506,
32.71,
'EUR',
'2017-12-12',
'Become a developer superhero and build stunning cross-platform apps with Delphi'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1546391272',
'Delphi in Depth: FireDAC',
'Cary Jensen Ph.D',
'avaliable',
'2017-05-01',
556,
52.43,
'EUR',
'2017-12-21',
'Learn how to connect to a wide variety of databases, optimize your connection configurations, the power of persisted datasets, create flexible queries using macros and FireDAC scalar functions, achieve blazing performance with Array DML, Master the art of cached updates'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1941266229',
'Dependency Injection In Delphi',
'Nick Hodges',
'avaliable',
'2017-02-01',
132,
18.18,
'USD',
'2017-12-23',
'Covers Dependency Injection, you''ll learn about Constructor Injection, Property Injection, and Method Injection and about the right and wrong way to use it'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1788625456',
'Delphi High Performance',
'Primož Gabrijelčič',
'avaliable',
'2018-02-01',
336,
25.83,
'EUR',
'2017-12-30',
'Build fast, scalable, and high performing applications with Delphi'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1788621304',
'Delphi Cookbook - Third Edition',
'Daniele Spinetti, Daniele Teti',
'avaliable',
'2018-07-01',
668,
30.13,
'EUR',
'2018-03-24',
'Quickly learn and employ practical recipes for developing real-world, cross-platform applications using Delphi'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1788625258',
'Hands-On Design Patterns with C# and .NET Core',
'Gaurav Aroraa, Jeffrey Chilberto',
'cooming-soon',
'1899-12-30',
437,
25.83,
'EUR',
'2019-02-16 22:20:16.493',
'Build effective applications in C# and .NET Core by using proven programming practices and design techniques.'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1788624176',
'Delphi GUI Programming with FireMonkey',
'Andrea Magni',
'cooming-soon',
'1899-12-30',
437,
29.27,
'EUR',
'2019-02-16 22:20:16.496',
'Master the techniques to build interesting cross platform GUI applications with FMX'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1789343243',
'Hands-On Design Patterns with Delphi',
'Primož Gabrijelčič',
'on-shelf',
'2019-02-27',
476,
35.99,
'EUR',
'2019-02-16 22:20:16.497',
'Build scalable projects via exploring design patterns in Delphi'
);
INSERT INTO Books (
ISBN,
Title,
Authors,
Status,
ReleseDate,
Pages,
Price,
Currency,
Imported,
Description
)
VALUES (
'978-1788834094',
'Hands-On Domain Driven Design with .NET',
'Alexey Zimarev',
'avaliable',
'2019-04-29',
446,
31.99,
'EUR',
'2019-02-16 22:20:16.498',
'Learn to solve complex business problems by understanding users better, finding the right problem to solve, and building lean event-driven systems to give your customers what they really want.'
);
COMMIT TRANSACTION;