Kevin Neufeld wrote:
> Justin Deoliveira wrote:
>> Yup, that is the basic approach. In your subclass you need to also
>> declare that it can handle spatial filters. See OracleFilterToSQL for
>> an example of this. You also need to extend the
>> visitBinarySpatialOperator() method to actual do th
Hi Kevin,
Kevin Neufeld wrote:
> Hi all,
>
> I'm trying to add basic indexing support for the SQLServer jdbc project.
>
> Currently queries that hit the database always perform full table scans and
> are of the form:
>
> SELECT "ID",CAST("geom".STSrid as VARCHAR) + ':' + "geom".STAsText() as "
Hi all,
I'm trying to add basic indexing support for the SQLServer jdbc project.
Currently queries that hit the database always perform full table scans and are
of the form:
SELECT "ID",CAST("geom".STSrid as VARCHAR) + ':' + "geom".STAsText() as "geom"
FROM "Roads"
It obviously needs a WHERE f