Actually I'm using QGIS 1.7.1 to create and visualise some geodata hosted by PostgreSQL 8.4 and PostGIS 1.4.0. The geodatatable is defined like this:
CREATE TABLE u2_baum
(
baum_id integer NOT NULL,
kronendurchmesser numeric(3,1),
hoehe numeric(3,1),
art_id integer,
the_geom geometry,
CONSTRAINT baum_id PRIMARY KEY (baum_id )
)
WITH (
OIDS=FALSE
);
I added some datasets on database level, using some simple INSERTs.
Everything works fine, except adding attributes to new geometries in QGIS. I am able to define the geometry and all integer attribues using the QGIS tools. The only problems were caused by the attributes with the numerical[n,m] fieldtype. One can't enter new values in these fields after creating a new geometry. The field can be "write activated" in the attribute table, but it isn't possible to enter values. Also it isnt possbile to Copy and Paste some values (like 10.3) into this fields. But it is possible to change existing numerical[n,m] values.
Do you know this error and a way to fix it?
Best regards
Philipp
PS: Due to some restictions I cant actually upgarde to QGIS 1.8