File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3189
3189
to augment bind- and result- behavior at the
3190
3190
SQL level, as opposed to in the Python level.
3191
3191
Allows for schemes like transparent encryption/
3192
- decryption, usage of Postgis functions, etc.
3192
+ decryption, usage of PostGIS functions, etc.
3193
3193
3194
3194
.. change ::
3195
3195
:tags: feature, sql
Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ possible to define SQL-level transformations as well. The rationale here is whe
338
338
only the relational database contains a particular series of functions that are necessary
339
339
to coerce incoming and outgoing data between an application and persistence format.
340
340
Examples include using database-defined encryption/decryption functions, as well
341
- as stored procedures that handle geographic data. The Postgis extension to PostgreSQL
341
+ as stored procedures that handle geographic data. The PostGIS extension to PostgreSQL
342
342
includes an extensive array of SQL functions that are necessary for coercing
343
343
data into particular formats.
344
344
@@ -348,7 +348,7 @@ can include implementations of
348
348
when defined to return a non-``None `` value should return a :class: `.ColumnElement `
349
349
expression to be injected into the SQL statement, either surrounding
350
350
bound parameters or a column expression. For example, to build a ``Geometry ``
351
- type which will apply the Postgis function ``ST_GeomFromText `` to all outgoing
351
+ type which will apply the PostGIS function ``ST_GeomFromText `` to all outgoing
352
352
values and the function ``ST_AsText `` to all incoming data, we can create
353
353
our own subclass of :class: `.UserDefinedType ` which provides these methods
354
354
in conjunction with :data: `~.sqlalchemy.sql.expression.func `::
Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ class LineString(Curve):
130
130
131
131
132
132
# DDL integration
133
- # Postgis historically has required AddGeometryColumn/DropGeometryColumn
134
- # and other management methods in order to create Postgis columns. Newer
133
+ # PostGIS historically has required AddGeometryColumn/DropGeometryColumn
134
+ # and other management methods in order to create PostGIS columns. Newer
135
135
# versions don't appear to require these special steps anymore. However,
136
136
# here we illustrate how to set up these features in any case.
137
137
You can’t perform that action at this time.
0 commit comments