Image | ![]() |
EAN-13 | 0025195051910 ![]() |
UPC-A | 025195051910 ![]() |
Product Name | Pre-Code Hollywood Collection |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | Weight:0.6 pounds |
Amazon.com | ![]() |
Long Description | For the first time ever, Universal opens its vaults to bring you 6 classic films from the most decadent era in motion picture history: Pre-Code Hollywood. In 1934, Hollywood was turned upside down by the enforcement of a strict “Production Code†that would change the way movies were made for the next 34 years. During the “pre-Code†period (1929 to mid-1934), censorship barely existed in Hollywood and filmmakers had free reign to make the movies they wanted and the public demanded. No subject was taboo including adultery, murder, or sex. Starring screen legends Cary Grant, Fredric March, Claudette Colbert, Tallulah Bankhead, Randolph Scott, and Sylvia Sidney, the Pre-Code Hollywood Collection forever captures one of the most unique periods in cinema history. The Cheat A compulsive gambler (Tallulah Bankhead) will do anything to pay off her debt - including turning to a wealthy businessman behind her husband’s back. Merrily We Go to Hell An abusive alcoholic (Fredric March) reunites with a woman from his past and drives his wife (Sylvia Sidney) to drastic measures. Hot Saturday Scandal erupts after a young woman (Nancy Carroll) innocently spends the night with a notorious playboy (Cary Grant) and neglects to tell her fiancé (Randolph Scott). Torch Singer After giving up her illegitimate child for adoption, a notorious nightclub singer (Claudette Colbert) attempts to find her daughter through a children’s radio show. Murder at the Vanities While sexy musical revue “The Vanities†captivates an audience on its opening night, a murder investigation takes place backstage. Search for Beauty Olympic swimming champions (Buster Crabbe and Ida Lupino) are tricked into endorsing a racy magazine - and much worse. |
Similar Items | 9780970331014: The Alfred Hitchcock Presents Companion 9780816142743: Cast Of Killers (G K Hall Large Print Book Series) 9780810982284: Sin In Soft Focus: Pre-Code Hollywood 9780747583677: Wisecracker: The Life And Times Of William Haines, Hollywood's First Openly Gay Star 9780312284312: Complicated Women: Sex And Power In Pre-Code Hollywood 9780312283117: Dangerous Men: Pre-Code Hollywood And The Birth Of The Modern Man 9780312252076: Complicated Women: Sex And Power In Pre-Code Hollywood 0888574431259: Forbidden Hollywood Collection Volume 1 0888574431242: Forbidden Hollywood Collection Volume 3 0888574431235: Forbidden Hollywood Collection Volume 2 0888574298920: Forbidden Hollywood Volume 9 0089218503596: Party Girl 0012569795761: TCM Archives - Forbidden Hollywood Collection, Vol. 2 |
Created | 01-12-2012 5:27:11am |
Modified | 04-28-2020 4:42:59pm |
MD5 | 9da4f7a728e1eaef8e480cf9395b697c |
SHA256 | 4b7100d4ecae4ac9c87717b9bde83f540d09e54de2a4edd2eab6b21bc0f2474f |
Search Google | by EAN or by Title |
Query Time | 0.0306540 |
Article of interest
Here we will demonstrate the most basic example of importing the CSV data files that we produce on this site into your MySQL database.
For information about various databases you can use and how to import CSV files into them, please view the overview article "Importing CSV data into your database".
For this example, we are going to import the product data CSV file out of the sample_ean_data.zip but this same process will work on the full data download file. We will also be executing the commands in the MySQL Workbench but you can also use the command line tool with the same commands if you like.
First, start by creating a blank table. Use the table layout described in the read_me file for the most up-to-date table layout. It is suggested that you not use any indexing at this point. You can add indexes later. It is most likely that you will have your own tables where you want to store your data so importing the CSV files can be done into temporary tables and then later copied over to your tables. Leaving off the indexes and constraints on these import tables reduces the risk of import errors. Here is an example:
create table ean_product
(
EAN13 varchar(13),
UPCA varchar(12),
UPCE varchar(8),
SKU varchar(200),
PriceNew numeric(15,2),
PriceUsed numeric(15,2),
PriceDate date,
company varchar(13),
product varchar(100),
description varchar(100),
category int,
url varchar(500),
created datetime,
modified datetime
);
Next we perform the import using the LOAD DATA INFILE command. The path to the file depends on where you saved the data and which operating system you are on. For Windows users you might find your file on the C: drive and Linux users may find your date in your home (~) folder. This example shows a Linux import. Only the path would be different between the operating systems.
LOAD DATA LOCAL
INFILE '~/sample_ean_data/sample_ean_product.csv'
INTO TABLE ean_product
FIELDS TERMINATED BY ',' ENCLOSED BY '"' ESCAPED BY '\\'
LINES TERMINATED BY '\r\n'
IGNORE 1 LINES;
Finally, lets look at the data that we just imported.
SELECT * FROM EAN_PRODUCT;
You may have seen some warnings after the import command. If you are concerned about these warnings, examine the data. It could be that some data has grown beyond the size specified in the read_me file. If you are worried, make the fields larger and try the process again after deleting all of the data out of the table.