-- MySQL dump 10.11 -- -- Host: localhost Database: nsrl -- ------------------------------------------------------ -- Server version 5.0.77 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `NSRLFile` -- DROP TABLE IF EXISTS `NSRLFile`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `NSRLFile` ( `SHA1` char(40) NOT NULL, `MD5` char(32) NOT NULL, `CRC32` char(8) NOT NULL, `FileName` char(255) NOT NULL, `FileSize` int(15) NOT NULL, `ProductCode` int(25) NOT NULL, `OpSystemCode` char(25) NOT NULL, `SpecialCode` char(1) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='File Table'; SET character_set_client = @saved_cs_client; -- -- Table structure for table `NSRLMfg` -- DROP TABLE IF EXISTS `NSRLMfg`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `NSRLMfg` ( `MfgCode` char(25) NOT NULL, `MfgName` char(150) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Manufacturer Table'; SET character_set_client = @saved_cs_client; -- -- Table structure for table `NSRLOS` -- DROP TABLE IF EXISTS `NSRLOS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `NSRLOS` ( `OpSystemCode` char(15) NOT NULL, `OpSystemName` char(150) NOT NULL, `OpSystemVersion` char(25) NOT NULL, `MfgCode` char(25) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Operating System Table'; SET character_set_client = @saved_cs_client; -- -- Table structure for table `NSRLProd` -- DROP TABLE IF EXISTS `NSRLProd`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `NSRLProd` ( `ProductCode` int(15) NOT NULL, `ProductName` char(150) NOT NULL, `ProductVersion` char(25) NOT NULL, `OpSystemCode` char(25) NOT NULL, `MfgCode` char(25) NOT NULL, `Language` char(150) NOT NULL, `ApplicationType` char(50) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Product Table'; SET character_set_client = @saved_cs_client; -- -- Table structure for table `version` -- DROP TABLE IF EXISTS `version`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `version` ( `SHA1` char(40) NOT NULL, `RDSVersion` char(40) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Version Information'; SET character_set_client = @saved_cs_client; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2009-06-09 20:58:16