Disable All Advertising
Image
EAN-130020626726214   EAN-13 barcode 0020626726214
UPC-A020626726214   UPC-A barcode 020626726214
Product NameTimeshift - Xbox 360
CategoryElectronics / Photography: Computer/Console Game
Short DescriptionHeight:0.5 inches / Length:7.5 inches / Weight:0.38 pounds / Width:5 inches
Amazon.comA Buy on Amazon ~ B000H94PVO
SKU2120000376504
Model72621
Price New10.99 US Dollars    (curriencies)
Price Used1.23 US Dollars    (curriencies)
ArtistArtist Not Provided
Genreaction-game-genre
Width5 inches    (convert)
Height0.5 inches    (convert)
Length7.5 inches    (convert)
Weight31 hundredths pounds    (convert)
BindingVideo Game
Published10/31/2007
Long DescriptionDr. Aiden Krone is a former professor of Applied Physics at MIT, notorious for his unrivaled brilliance and obsession with Thermodynamics, Advanced Propulsion, and Quantum Electrodynamics (QED). Despite his increasing tendencies to demand control and secrecy, he became the Founder and Lead Physicist of a classified Time Travel research program. Over a decade later, Krone's program had successfully developed the world's first time-traveling suit technology. However, as the program's equally secretive decision-makers demanded this technology be adapted for military applications, Krone's feelings of self-entitlement and anger grew. He secretly desired a new existence, a new world where his scientific endeavors could be shaped and experienced without outside interference. The combination of Krone's mind and his suit technology gave him the ability to create and control another existence - an existence where a man of science could finally operate without restrictions and do so within a place where science itself was properly respected¿ regardless of the effects on humanity. It is now up to you to trace Krone's last known appearances and stop his tyrannical rule over Alpha District. In a twisted world where scientific accomplishments reign, it's up to you to don the Beta Suit and Master Time to Become the Ultimate Weapon.
Similar Items9780744006162: Prey Official Strategy Guide (Official Strategy Guides (Bradygames))
0879278219007: Dark Sector - Xbox 360
0093155128804: Fallout 3 Add On Anchor/Pit Xb
0023272956769: Fracture - Xbox 360
0020626726962: F.E.A.R. Files - Xbox 360
Created06-03-2008
Modified07-27-2018 10:44:23am
MD54345accc2f60d0df24f2796c80e120ee
SHA25602a9c68375710608028e3f9958a7b2836bd580c02301e2417d4bb1452b3fa62a
Search Googleby EAN or by Title
Query Time0.0182230

An article of interest

Making use of the tools we offer

Importing our data into your MySQL database

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.