| От | David Hartwig |
|---|---|
| Тема | Re: [SQL] Getting datatype before SELECT |
| Дата | |
| Msg-id | 361150FF.8FA8CB1F@insightdist.com обсуждение исходный текст |
| Ответ на | Getting datatype before SELECT (Glenn Sullivan <glenn.sullivan@nmr.varian.com>) |
| Список | pgsql-sql |
Glenn Sullivan wrote: > In my C code which communicates with the Postgres database, > I have the need to determine the datatype of a column, before > I have done a SELECT command. I have the name of the column, > but I cannot seem to figure out how to get the datatype information > until after I have done a SELECT. Then I can call PQfnumber() and > PQftype() to get the type. Does anyone know how to do this? -- will give you the attribute name SELECT pg_type.typname FROM pg_class, pg_type, pg_attribute WHERE pg_class.relname = 'your_table' AND pg_attribute.attname = 'your_attribute' AND pg_class.oid = pg_attribute.attrelid AND pg_attribute.atttypid = pg_type.oid;
В списке pgsql-sql по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера