当前位置: 首页>>代码示例>>Python>>正文


Python PostGIS.tx_execute方法代码示例

本文整理汇总了Python中stetl.postgis.PostGIS.tx_execute方法的典型用法代码示例。如果您正苦于以下问题:Python PostGIS.tx_execute方法的具体用法?Python PostGIS.tx_execute怎么用?Python PostGIS.tx_execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在stetl.postgis.PostGIS的用法示例。


在下文中一共展示了PostGIS.tx_execute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: pg_srs_constraint

# 需要导入模块: from stetl.postgis import PostGIS [as 别名]
# 或者: from stetl.postgis.PostGIS import tx_execute [as 别名]
 def pg_srs_constraint(self):
     log.info('set srs constraint')
     db = PostGIS(self.cfg.get_dict())
     srid = self.srid
     sql = "ALTER TABLE gml_objects DROP CONSTRAINT enforce_srid_gml_bounded_by;"
     db.tx_execute(sql)
     sql = "ALTER TABLE gml_objects ADD CONSTRAINT enforce_srid_gml_bounded_by CHECK  (st_srid(gml_bounded_by) = (%s));" % srid
     db.tx_execute(sql)
开发者ID:gijs,项目名称:stetl,代码行数:10,代码来源:deegreeoutput.py

示例2: write

# 需要导入模块: from stetl.postgis import PostGIS [as 别名]
# 或者: from stetl.postgis.PostGIS import tx_execute [as 别名]
    def write(self, packet):
        if packet.data is None:
            return packet

        log.info('executing SQL')
        db = PostGIS(self.cfg.get_dict())
        rowcount = db.tx_execute(packet.data)
        log.info('executed SQL, rowcount=%d' % rowcount)
        return packet
开发者ID:fsteggink,项目名称:stetl,代码行数:11,代码来源:dboutput.py

示例3: delete_features

# 需要导入模块: from stetl.postgis import PostGIS [as 别名]
# 或者: from stetl.postgis.PostGIS import tx_execute [as 别名]
 def delete_features(self):
     log.info('deleting ALL features in DB')
     db = PostGIS(self.cfg.get_dict())
     db.tx_execute("TRUNCATE gml_objects")
开发者ID:gijs,项目名称:stetl,代码行数:6,代码来源:deegreeoutput.py


注:本文中的stetl.postgis.PostGIS.tx_execute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。