Hi,
I’m using Postgres with Servoy 7.4.1.
When I create a table in pgadmin, with a column double precision
CREATE TABLE test2
(
test_id character varying(36) NOT NULL,
test_number_field double precision,
CONSTRAINT test_pkey PRIMARY KEY (test_id)
)
WITH (
OIDS=FALSE
);
ALTER TABLE test2
OWNER TO “DBA”;
Then when I go to Servoy in the data base servers, and open the table (test2), I see the column test_number_field as having type Number and length 1717.
Can someone please explain why the length is this way?
Is there a way to avoid this situation?
Regards,
Hareendra