Sha256: 25ad145372fe410a33c4e7ffc866ccb8132740f4f2bf76fa8971b8f0a9708ec6
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
# ISO <<Class>> FC_Constraint # writer output in XML # create constraints for primary keys and indexes # ... FC_Constraint only has one attribute, description # ... all constraints need to be expressed as character strings # History: # Stan Smith 2014-12-02 original script class FC_Constraint def initialize(xml) @xml = xml end def writeXML(conType, hConstraint) @xml.tag!('gfc:FC_Constraint') do @xml.tag!('gfc:description') do # find type of constraint (primary key or index) case conType # primary keys when 'pk' s = 'primary key: ' s += hConstraint.to_s # indexes when 'index' if hConstraint[:duplicate] indexType = 'duplicate' else indexType = 'unique' end s = indexType + ' index ' + hConstraint[:indexCode] s += ' on ' + hConstraint[:attributeNames].to_s # foreign keys when 'fk' s = 'foreign key ' s += hConstraint[:fkLocalAttributes].to_s s += ' references ' + hConstraint[:fkReferencedEntity] + '.' s += hConstraint[:fkReferencedAttributes].to_s end @xml.tag!('gco:CharacterString',s) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
adiwg-mdtranslator-0.10.2 | lib/adiwg/mdtranslator/writers/iso/classes/class_featureConstraint.rb |