Struct that stores information about a data set using the most common data types. More...
#include <DSInfo.h>
Public Attributes | |
| bool | hasPk | 
| If has Primary key.  More... | |
| std::string | name | 
| Data Set Name.  More... | |
| PKInfo | pkInfo | 
| Primary Key struct.  More... | |
| std::vector< CCInfo > | vecCcInfo | 
| Check Constraint struct vector.  More... | |
| std::vector< FKInfo > | vecFkInfo | 
| Foreign Key struct vector.  More... | |
| std::vector< IdxInfo > | vecIdxInfo | 
| Index struct vector.  More... | |
| std::vector< UKInfo > | vecUkInfo | 
| Unique Key struct vector.  More... | |
Struct that stores information about a data set using the most common data types.
| bool DataSetStruct::hasPk | 
If has Primary key.
Definition at line 229 of file DSInfo.h.
Referenced by DSInfo::getDataSetInfo(), and PrintManager::printDataSetInfo().
| std::string DataSetStruct::name | 
Data Set Name.
Definition at line 228 of file DSInfo.h.
Referenced by DSInfo::getDataSetInfo(), and PrintManager::printDataSetInfo().
| PKInfo DataSetStruct::pkInfo | 
Primary Key struct.
Definition at line 230 of file DSInfo.h.
Referenced by DSInfo::getDataSetInfo(), and PrintManager::printDataSetInfo().
| std::vector<CCInfo> DataSetStruct::vecCcInfo | 
Check Constraint struct vector.
Definition at line 234 of file DSInfo.h.
Referenced by DSInfo::getDataSetInfo(), and PrintManager::printDataSetInfo().
| std::vector<FKInfo> DataSetStruct::vecFkInfo | 
Foreign Key struct vector.
Definition at line 231 of file DSInfo.h.
Referenced by DSInfo::getDataSetInfo(), and PrintManager::printDataSetInfo().
| std::vector<IdxInfo> DataSetStruct::vecIdxInfo | 
Index struct vector.
Definition at line 233 of file DSInfo.h.
Referenced by DSInfo::getDataSetInfo(), and PrintManager::printDataSetInfo().
| std::vector<UKInfo> DataSetStruct::vecUkInfo | 
Unique Key struct vector.
Definition at line 232 of file DSInfo.h.
Referenced by DSInfo::getDataSetInfo(), and PrintManager::printDataSetInfo().