Hi how i can run this code from Xojo to add tables or updates
run from a text file
CREATE TABLE reciveddt
(
cntid integer,
itemnum character(25),
qtyold integer,
qtynew integer,
upstatus character(1),
costold numeric(9,2),
costnew numeric(9,2),
description character varying(50)
)
WITH (
OIDS=FALSE
);
ALTER TABLE reciveddt
OWNER TO postgres;