writing features on table with no geometry fails
------------------------------------------------

                 Key: GEOT-2575
                 URL: http://jira.codehaus.org/browse/GEOT-2575
             Project: GeoTools
          Issue Type: Bug
          Components: data jdbc-ng
    Affects Versions: 2.6-M1, 2.5.6
            Reporter: Justin Deoliveira
            Assignee: Justin Deoliveira


CREATE TABLE nogeom ( id serial PRIMARY KEY, name varchar);

        DataStore ds = ...;
        FeatureWriter w = 
ds.getFeatureWriterAppend("nogeom",Transaction.AUTO_COMMIT);

        w.hasNext();
        SimpleFeature f = (SimpleFeature) w.next();
        f.setAttribute("name", "foobar");
        w.write();

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
_______________________________________________
Geotools-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to