Message-ID: From: "JacoboSanchez (@JacoboSanchez)" To: "postgresql-interfaces/psqlodbc" Date: Thu, 19 Dec 2024 16:10:30 +0000 Subject: Re: [postgresql-interfaces/psqlodbc] issue #83: SQLDescribeCol returning size 0 on bytea column if bytea as LO is enabled In-Reply-To: References: List-Id: X-GitHub-Author-Login: JacoboSanchez X-GitHub-Comment-Id: 2554848820 X-GitHub-Comment-Type: issue_comment X-GitHub-Edited-At: 2024-12-19T16:11:00Z X-GitHub-Issue: 83 X-GitHub-Repo: postgresql-interfaces/psqlodbc X-GitHub-Type: comment X-GitHub-Url: https://github.com/postgresql-interfaces/psqlodbc/issues/83#issuecomment-2554848820 Content-Type: text/plain; charset=utf-8 This is the output of pgadmin generating the create table script. Any table with a bytea column and preparing a select on it should work. My test was preparing a select * and describing column 2 ``` CREATE TABLE IF NOT EXISTS public.test_binary ( id integer, binary_data bytea, description character varying(255) COLLATE pg_catalog."default" ) ```