MySQL Dump of main dataset
收藏资源简介:
SQL Dump, with three tables: +-----------------+| Tables_in_OODev |+-----------------+| FileID || ProjectID || summary |+-----------------+ Desc of each:mysql> desc FileID;+----------+---------+------+-----+---------+-------+| Field | Type | Null | Key | Default | Extra |+----------+---------+------+-----+---------+-------+| Project | int(11) | YES | | NULL | || FullPath | text | YES | | NULL | || ID | int(11) | YES | | NULL | |+----------+---------+------+-----+---------+-------+ mysql> desc ProjectID;+-------+---------+------+-----+---------+-------+| Field | Type | Null | Key | Default | Extra |+-------+---------+------+-----+---------+-------+| Name | text | YES | | NULL | || ID | int(11) | YES | | NULL | |+-------+---------+------+-----+---------+-------+ mysql> desc summary;+-----------+---------+------+-----+---------+-------+| Field | Type | Null | Key | Default | Extra |+-----------+---------+------+-----+---------+-------+| Project | int(11) | YES | | NULL | || Type | text | YES | | NULL | || ClassName | text | YES | | NULL | || FileID | int(11) | YES | | NULL | || Authors | int(11) | YES | | NULL | || IFANIN | int(11) | YES | | NULL | || CBO | int(11) | YES | | NULL | || NOC | int(11) | YES | | NULL | || NIM | int(11) | YES | | NULL | || NIV | int(11) | YES | | NULL | || WMC | int(11) | YES | | NULL | || RFC | int(11) | YES | | NULL | || DIT | int(11) | YES | | NULL | || LCOM | int(11) | YES | | NULL | |+-----------+---------+------+-----+---------+-------+



