Advertisement
Advertisement
| 08.20.2008 at 05:58AM PDT, ID: 23662885 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
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: |
CREATE TABLE IF NOT EXISTS `newDVD` (
`ID` bigint(20) NOT NULL auto_increment,
`site` varchar(255) collate latin1_danish_ci NOT NULL,
`title` varchar(255) collate latin1_danish_ci NOT NULL,
`deeplink` varchar(255) collate latin1_danish_ci NOT NULL,
`afflink` varchar(255) collate latin1_danish_ci NOT NULL,
`price` float NOT NULL,
`currency` varchar(3) collate latin1_danish_ci NOT NULL,
`region` varchar(10) collate latin1_danish_ci NOT NULL,
`description` text collate latin1_danish_ci NOT NULL,
`subtitles` varchar(255) collate latin1_danish_ci NOT NULL,
`genre` varchar(255) collate latin1_danish_ci NOT NULL,
`extrafound` enum('yes','no') collate latin1_danish_ci NOT NULL default 'no',
`image` varchar(255) collate latin1_danish_ci NOT NULL,
`date` date NOT NULL,
`instock` enum('yes','no') collate latin1_danish_ci NOT NULL default 'yes',
`preorder` enum('yes','no') collate latin1_danish_ci NOT NULL default 'no',
`timestamp` datetime NOT NULL,
PRIMARY KEY (`ID`),
KEY `currency` (`currency`),
KEY `site` (`site`),
KEY `title` (`title`),
FULLTEXT KEY `search` (`title`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_danish_ci AUTO_INCREMENT=4404278 ;
CREATE TABLE IF NOT EXISTS `currency` (
`ID` bigint(20) NOT NULL auto_increment,
`code` varchar(5) collate latin1_danish_ci NOT NULL,
`rate` float NOT NULL,
`date` date NOT NULL,
`timestamp` datetime NOT NULL,
PRIMARY KEY (`ID`),
KEY `code` (`code`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_danish_ci AUTO_INCREMENT=1181 ;
CREATE TABLE IF NOT EXISTS `sites` (
`ID` bigint(20) NOT NULL auto_increment,
`name` varchar(255) collate latin1_danish_ci NOT NULL,
`URL` varchar(255) collate latin1_danish_ci NOT NULL,
`code` varchar(25) collate latin1_danish_ci NOT NULL,
`approved` enum('yes','no') collate latin1_danish_ci NOT NULL default 'no',
`country` varchar(255) collate latin1_danish_ci NOT NULL default 'all',
PRIMARY KEY (`ID`),
KEY `code` (`code`),
KEY `country` (`country`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_danish_ci AUTO_INCREMENT=11 ;
|