├── .gitignore ├── 1_ifcSQL_Create ├── ifcSQL_10_BugFixes.sql ├── ifcSQL_1_CreateDatabase.sql ├── ifcSQL_2_CreateSchemata_and_types.sql ├── ifcSQL_3_CreateFunctions.sql ├── ifcSQL_4_CreateTables.sql ├── ifcSQL_5_CreateViews.sql ├── ifcSQL_6_CreateTableConstraints.sql ├── ifcSQL_7_CreateProcedures.sql ├── ifcSQL_8_CreateTriggers.sql ├── ifcSQL_9_DisableTrigger.sql └── ifcSQL_Create.bat ├── 2_ifcSQL_Fill ├── ifcAPI.ComputerLanguage.Table.sql ├── ifcAPI.TypeComputerLanguageAssignment.Table.sql ├── ifcDocumentation.NaturalLanguage.Table.sql ├── ifcInstance.Entity.Table.sql ├── ifcInstance.EntityAttributeListElementOfBinary.Table.sql ├── ifcInstance.EntityAttributeListElementOfEntityRef.Table.sql ├── ifcInstance.EntityAttributeListElementOfFloat.Table.sql ├── ifcInstance.EntityAttributeListElementOfInteger.Table.sql ├── ifcInstance.EntityAttributeListElementOfList.Table.sql ├── ifcInstance.EntityAttributeListElementOfListElementOfEntityRef.Table.sql ├── ifcInstance.EntityAttributeListElementOfListElementOfFloat.Table.sql ├── ifcInstance.EntityAttributeListElementOfListElementOfInteger.Table.sql ├── ifcInstance.EntityAttributeListElementOfString.Table.sql ├── ifcInstance.EntityAttributeOfBinary.Table.sql ├── ifcInstance.EntityAttributeOfBoolean.Table.sql ├── ifcInstance.EntityAttributeOfEntityRef.Table.sql ├── ifcInstance.EntityAttributeOfEnum.Table.sql ├── ifcInstance.EntityAttributeOfFloat.Table.sql ├── ifcInstance.EntityAttributeOfInteger.Table.sql ├── ifcInstance.EntityAttributeOfList.Table.sql ├── ifcInstance.EntityAttributeOfString.Table.sql ├── ifcInstance.EntityAttributeOfVector.Table.sql ├── ifcInstance.EntityVariableName.Table.sql ├── ifcProject.EntityInstanceIdAssignment.Table.sql ├── ifcProject.LastGlobalEntityInstanceId.Table.sql ├── ifcProject.Project.Table.sql ├── ifcProject.ProjectGroup.Table.sql ├── ifcProject.ProjectGroupType.Table.sql ├── ifcProject.ProjectType.Table.sql ├── ifcProperty.PropertyDef.Table.sql ├── ifcProperty.PropertyDefAlias.Table.sql ├── ifcProperty.PropertySetDef.Table.sql ├── ifcProperty.PropertySetDefAlias.Table.sql ├── ifcProperty.PropertySetDefApplicable.Table.sql ├── ifcProperty.TypePropertyReferenceValue.Table.sql ├── ifcProperty.TypePropertySingleValue.Table.sql ├── ifcQuantityTakeOff.Type.Table.sql ├── ifcSQL.BaseTypeGroup.Table.sql ├── ifcSQL.EntityAttributeTable.Table.sql ├── ifcSQL.Issues.Table.sql ├── ifcSQL.Licence.Table.sql ├── ifcSQL.Release.Table.sql ├── ifcSQL_Fill.bat ├── ifcSchema.EntityAttribute.Table.sql ├── ifcSchema.EntityInverseAssignment.Table.sql ├── ifcSchema.EnumItem.Table.sql ├── ifcSchema.Layer.Table.sql ├── ifcSchema.LayerGroup.Table.sql ├── ifcSchema.SelectItem.Table.sql ├── ifcSchema.Type.CREATE_CONSTRAINT.sql ├── ifcSchema.Type.DROP_CONSTRAINT.sql ├── ifcSchema.Type.Table.sql ├── ifcSchema.TypeGroup.Table.sql ├── ifcSchemaTool.ChangeLogType.Table.sql ├── ifcSpecification.Specification.Table.sql ├── ifcSpecification.SpecificationGroup.Table.sql ├── ifcSpecification.TypeSpecificationAssignment.Table.sql ├── ifcUnit.SIPrefixEnumExponentAssigment.Table.sql ├── ifcUnit.SIUnitNameEnumDimensionsExponentAssignment.Table.sql ├── ifcUnit.SIUnitNameUnitOfMeasureEnumAssignment.Table.sql └── ifcUnit.Unit.Table.sql ├── LICENSE.md ├── README.md ├── doc └── img │ ├── eco_ifcSQL_small.png │ ├── ifcSQL_10_blue2.png │ ├── ifcSQL_from_Luggage_to_Wardrobe_small.png │ ├── ifcSQL_in_SMMS.png │ ├── ifcSQL_prjSel_small.png │ ├── ifc_ifcSQL_uml_Bock.png │ └── ifc_ifcSQL_uml_Bock_old.png └── ifcTools └── ifcSQL_PrjSel ├── Properties └── AssemblyInfo.cs ├── ifcSQL_PrjSel.cs ├── ifcSQL_PrjSel.csproj ├── ifcSQL_PrjSel.sln └── ifcSQL_for_PrjSel_db_generated.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/.gitignore -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_10_BugFixes.sql: -------------------------------------------------------------------------------- 1 | USE [ifcSQL] 2 | GO 3 | 4 | -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_1_CreateDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_1_CreateDatabase.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_2_CreateSchemata_and_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_2_CreateSchemata_and_types.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_3_CreateFunctions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_3_CreateFunctions.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_4_CreateTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_4_CreateTables.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_5_CreateViews.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_5_CreateViews.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_6_CreateTableConstraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_6_CreateTableConstraints.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_7_CreateProcedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_7_CreateProcedures.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_8_CreateTriggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_8_CreateTriggers.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_9_DisableTrigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_9_DisableTrigger.sql -------------------------------------------------------------------------------- /1_ifcSQL_Create/ifcSQL_Create.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/1_ifcSQL_Create/ifcSQL_Create.bat -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcAPI.ComputerLanguage.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcAPI.ComputerLanguage.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcAPI.TypeComputerLanguageAssignment.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcAPI.TypeComputerLanguageAssignment.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcDocumentation.NaturalLanguage.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcDocumentation.NaturalLanguage.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.Entity.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.Entity.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfBinary.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfBinary.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfEntityRef.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfEntityRef.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfFloat.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfFloat.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfInteger.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfInteger.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfList.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfList.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfListElementOfEntityRef.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfListElementOfEntityRef.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfListElementOfFloat.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfListElementOfFloat.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfListElementOfInteger.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfListElementOfInteger.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfString.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeListElementOfString.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfBinary.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfBinary.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfBoolean.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfBoolean.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfEntityRef.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfEntityRef.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfEnum.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfEnum.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfFloat.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfFloat.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfInteger.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfInteger.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfList.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfList.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfString.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfString.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityAttributeOfVector.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityAttributeOfVector.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcInstance.EntityVariableName.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcInstance.EntityVariableName.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProject.EntityInstanceIdAssignment.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProject.EntityInstanceIdAssignment.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProject.LastGlobalEntityInstanceId.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProject.LastGlobalEntityInstanceId.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProject.Project.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProject.Project.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProject.ProjectGroup.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProject.ProjectGroup.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProject.ProjectGroupType.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProject.ProjectGroupType.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProject.ProjectType.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProject.ProjectType.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProperty.PropertyDef.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProperty.PropertyDef.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProperty.PropertyDefAlias.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProperty.PropertyDefAlias.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProperty.PropertySetDef.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProperty.PropertySetDef.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProperty.PropertySetDefAlias.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProperty.PropertySetDefAlias.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProperty.PropertySetDefApplicable.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProperty.PropertySetDefApplicable.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProperty.TypePropertyReferenceValue.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProperty.TypePropertyReferenceValue.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcProperty.TypePropertySingleValue.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcProperty.TypePropertySingleValue.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcQuantityTakeOff.Type.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcQuantityTakeOff.Type.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSQL.BaseTypeGroup.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSQL.BaseTypeGroup.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSQL.EntityAttributeTable.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSQL.EntityAttributeTable.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSQL.Issues.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSQL.Issues.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSQL.Licence.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSQL.Licence.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSQL.Release.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSQL.Release.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSQL_Fill.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSQL_Fill.bat -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.EntityAttribute.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.EntityAttribute.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.EntityInverseAssignment.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.EntityInverseAssignment.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.EnumItem.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.EnumItem.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.Layer.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.Layer.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.LayerGroup.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.LayerGroup.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.SelectItem.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.SelectItem.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.Type.CREATE_CONSTRAINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.Type.CREATE_CONSTRAINT.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.Type.DROP_CONSTRAINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.Type.DROP_CONSTRAINT.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.Type.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.Type.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchema.TypeGroup.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchema.TypeGroup.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSchemaTool.ChangeLogType.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSchemaTool.ChangeLogType.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSpecification.Specification.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSpecification.Specification.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSpecification.SpecificationGroup.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSpecification.SpecificationGroup.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcSpecification.TypeSpecificationAssignment.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcSpecification.TypeSpecificationAssignment.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcUnit.SIPrefixEnumExponentAssigment.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcUnit.SIPrefixEnumExponentAssigment.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcUnit.SIUnitNameEnumDimensionsExponentAssignment.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcUnit.SIUnitNameEnumDimensionsExponentAssignment.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcUnit.SIUnitNameUnitOfMeasureEnumAssignment.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcUnit.SIUnitNameUnitOfMeasureEnumAssignment.Table.sql -------------------------------------------------------------------------------- /2_ifcSQL_Fill/ifcUnit.Unit.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/2_ifcSQL_Fill/ifcUnit.Unit.Table.sql -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/README.md -------------------------------------------------------------------------------- /doc/img/eco_ifcSQL_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/doc/img/eco_ifcSQL_small.png -------------------------------------------------------------------------------- /doc/img/ifcSQL_10_blue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/doc/img/ifcSQL_10_blue2.png -------------------------------------------------------------------------------- /doc/img/ifcSQL_from_Luggage_to_Wardrobe_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/doc/img/ifcSQL_from_Luggage_to_Wardrobe_small.png -------------------------------------------------------------------------------- /doc/img/ifcSQL_in_SMMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/doc/img/ifcSQL_in_SMMS.png -------------------------------------------------------------------------------- /doc/img/ifcSQL_prjSel_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/doc/img/ifcSQL_prjSel_small.png -------------------------------------------------------------------------------- /doc/img/ifc_ifcSQL_uml_Bock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/doc/img/ifc_ifcSQL_uml_Bock.png -------------------------------------------------------------------------------- /doc/img/ifc_ifcSQL_uml_Bock_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/doc/img/ifc_ifcSQL_uml_Bock_old.png -------------------------------------------------------------------------------- /ifcTools/ifcSQL_PrjSel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/ifcTools/ifcSQL_PrjSel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ifcTools/ifcSQL_PrjSel/ifcSQL_PrjSel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/ifcTools/ifcSQL_PrjSel/ifcSQL_PrjSel.cs -------------------------------------------------------------------------------- /ifcTools/ifcSQL_PrjSel/ifcSQL_PrjSel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/ifcTools/ifcSQL_PrjSel/ifcSQL_PrjSel.csproj -------------------------------------------------------------------------------- /ifcTools/ifcSQL_PrjSel/ifcSQL_PrjSel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/ifcTools/ifcSQL_PrjSel/ifcSQL_PrjSel.sln -------------------------------------------------------------------------------- /ifcTools/ifcSQL_PrjSel/ifcSQL_for_PrjSel_db_generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfcSharp/IfcSQL/HEAD/ifcTools/ifcSQL_PrjSel/ifcSQL_for_PrjSel_db_generated.cs --------------------------------------------------------------------------------