Welcome to Cars Models Specifications Database
Please be sure that this database is the new and updated one of the previous one.
Differences with the previous version:
1) New records
2) Updated records
3) BRAND NAMES!!!
As you know, the previous version doesn't have "brand" names, so I integrated
BRAND NAMES also into this new version.
All my previous buyers of the old "Cars Specifications Database" will get this new updated version for free. They can send a p.m to me with their payment details.
Here the fields of this database:
1) ID
2) BRAND NAME -
NEW ADDITION
3) BASE PRICE
4) SUBMODEL
5) MAIN MODEL
6) TYPE OF BODY
7) MAXIMUM ltr BOOT SPACE
8) MINIMUM ltf BOOT SPACE
9) DRIVEN WHEELS
10) ENGINE AND TYPE (cc/type)
11) ENGINE POSITION
12) FRONT HEADROOM (mm)
13) FRONT LEGROOM (mm)
14) FUEL TYPE
15) HANDS FREE PHONE
16) HEIGHT (mm)
17) FULL WEIGHT (kg)
18) LENGHT (mm)
19) MAX POWER (BHP/RPM)
20) MAX TORQUE (lbft/rpm)
21) MULTI CD
22) NUMBER OF DOORS
23) NUMBER OF SEATS
24) RDS RADIO
25) REAR HEADROOM (mm)
26) REAR KNEEROOM (mm)
27) SATELLITE NAVIGATION
28) TOWING WEIGHT (kg)
29) TURNING CIRCLE (m)
30) UNIQUE FIT RADIO
31) WIDTH (mm)
32) ACCELERATION 0-60 MPH (secs)
33) TOPSPEED (mph)
34) CO2 RATING (g/km)
35) WARRANTY DURATION
36) PENCE PER MILE
37) SERVICE INTERVALS
38) SERVICING COST 3 YEAR
39) TANK CAPACITY (gallons)
40) CONTRACT HIRE RATE (pcm)
41) INSURANCE QUOTE
As you see, there're
41 different fields.
The database is uptodate and includes the lastest car models.
Structure of the database:
PHP Code:
CREATE TABLE `cardata` (
`id` bigint(20) NOT NULL auto_increment,
`brand` text,
`price` varchar(255) NOT NULL default '',
`submodel` text NOT NULL,
`mainmodel` text,
`typeofbody` text,
`maxbootspace` text,
`minbootspace` text,
`drivenwheels` text,
`enginetype` text,
`engineposition` text,
`frontheadroom` text,
`frontlegroom` text,
`fueltype` text,
`handsfreephone` text,
`height` text,
`kerbweight` text,
`lenght` text,
`maxpowerbhp2rpm` text,
`maxtorquelbft2rpm` text,
`multicd` text,
`numberofdoors` text,
`numberofseats` text,
`rdsradio` text,
`rearheadroom` text,
`rearkneeroom` text,
`satellitenavigation` text,
`towingweight` text,
`turningcircle` text,
`uniquefitradio` text,
`width` text,
`acceleration060mph` text,
`topspeed` text,
`co2ratingg2km` text,
`warranty` text,
`pencepermile` text,
`serviceintervals` text,
`servicingcost3year` text,
`tankcapacity` text,
`typicalcontracthirerate` text,
`insurancequote` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3610 ;
Sample from the database:
PHP Code:
INSERT INTO `cardata` VALUES (300, 'Audi', '£37,385', '3.2 FSI Quattro S line', 'Audi A6 5dr avant', 'Estate', '1660', '565', 'Four', '3123/6', 'F', '992', '1060', 'Unleaded', '400', '1463', '1610', '4933', '252/6500', '243/3250', '320', '5', '5', 'standard', '978', '860', '1250', '1900', '11.9', 'TBA', '1855', '7', '155', '262', '3yr/60k + 3yr Paint + 12yr Perforation + 3yr Breakdown', '90.17', '9,000-19,000', '1097', '15.4', '755', '670');
Records: 3.609
Price: 49$
Regards