In other applications, I can use a SQL statement such as this:
SELECT comments
FROM user_col_comments
WHERE table_name='tbl_Records';
to view comments linked to a table and its individual columns.
I can also use a statement such as
COMMENT ON COLUMN "tbl_Records"."Column" IS 'Description';
to attach a comment.
I have had absolutely no luck getting this to work in Access. Is there any way to handle it?
SELECT comments
FROM user_col_comments
WHERE table_name='tbl_Records';
to view comments linked to a table and its individual columns.
I can also use a statement such as
COMMENT ON COLUMN "tbl_Records"."Column" IS 'Description';
to attach a comment.
I have had absolutely no luck getting this to work in Access. Is there any way to handle it?