1 |
# Copyright (c) 2002, 2003 by Intevation GmbH |
# Copyright (c) 2002, 2003, 2004 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Bernhard Herzog <[email protected]> |
# Bernhard Herzog <[email protected]> |
4 |
# |
# |
489 |
class NonConnectionStore(PostGISShapeStore): |
class NonConnectionStore(PostGISShapeStore): |
490 |
"""Shapestore that doesn't try to access the server""" |
"""Shapestore that doesn't try to access the server""" |
491 |
def _fetch_table_information(self): |
def _fetch_table_information(self): |
492 |
pass |
# pretend that we've found a geometry column |
493 |
|
self.geometry_column = "the_geom" |
494 |
|
|
495 |
session = Session("A PostGIS Session") |
session = Session("A PostGIS Session") |
496 |
try: |
try: |