- Add a way to return row description for the query results in http api.
Column(name, type_code, display_size, internal_size, precision, scale, null_ok) with name and type_code mandatory and others NULL if no meaningful values can be provided.
Data Definition Language:
TRUNCATE ...,... RESTART IDENTITY CASCADE
- Check Constraints.
ALTER TABLE ... ADD CONSTRAINT ... (CHECK/PRIMARY KEY)
ALTER TABLE ... DROP CONSTRAINT
ALTER COLUMN ... (TYPE/SET NOT NULL/DROP NOT NULL) example.
- Add
binary/bytea/blob datatype
- Foreign Key support (REFERENCE, ADD/DROP CONSTRAINT FOREIGN KEY REFERENCES ... ON DELETE ... ON UPDATE...)
CREATE/ALTER/DROP DATABASE? Support connection to different databases?
Column(name, type_code, display_size, internal_size, precision, scale, null_ok)withnameandtype_codemandatory and othersNULLif no meaningful values can be provided.Data Definition Language:
TRUNCATE ...,... RESTART IDENTITY CASCADEALTER TABLE ... ADD CONSTRAINT ...(CHECK/PRIMARY KEY)ALTER TABLE ... DROP CONSTRAINTALTER COLUMN ...(TYPE/SET NOT NULL/DROP NOT NULL) example.binary/bytea/blobdatatypeCREATE/ALTER/DROP DATABASE? Support connection to different databases?