Re: [Geotools-devel] geometry_columns for sql server as well

2012-09-09 Thread Justin Deoliveira
No objection here. On Fri, Sep 7, 2012 at 12:56 PM, Andrea Aime wrote: > Hi, > remember when we talked about the geometry metadata table for Oracle? > > Well, I'm now back with the same issue for SQL Server, which is aggravated > by the > fact that SQL Server seems not to have any native way to d

Re: [Geotools-devel] SortBy on complex features

2012-09-09 Thread Jody Garnett
Sounds fine Andrea: Part of the point of moving to Query as a class was a chance to make things easier to use. -- Jody Garnett On Sunday, 9 September 2012 at 6:12 PM, Andrea Aime wrote: > Hi, > the current filter factory allows only one way to build sortBy: > > SortBy sort(String prop

Re: [Geotools-devel] Cosmetic change to the Query class

2012-09-09 Thread Jody
Go for it. Parting making that a class was to give us a chance to make it easier. -- Jody Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Sunday, 9 September 2012 at 5:06 PM, Andrea Aime wrote: > Hi, > does anybody mind if we change the following two methods: > > public void

[Geotools-devel] SortBy on complex features

2012-09-09 Thread Andrea Aime
Hi, the current filter factory allows only one way to build sortBy: SortBy sort(String propertyName, SortOrder order); However the above does not work against complex features, we need to be able to use a xpath and provide a namespace support in order for the property to be found using the xp

[Geotools-devel] Cosmetic change to the Query class

2012-09-09 Thread Andrea Aime
Hi, does anybody mind if we change the following two methods: public void setPropertyNames(String[] propNames) { public void setSortBy(SortBy[] sortBy) { to use variable arguments like this: public void setPropertyNames(String... propNames) { public void setSortBy(SortBy... sortB