Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have requirement to list columns from table. Currently i am using tJDBCColumnList(DB Type : Postgresql) but it is not giving correct result.
For other DB Types its working well. Can you please help me with any other descriptor.
Regards
Prasoon
SELECT
"column_name",
"udt_name"
FROM information_schema.columns
WHERE table_schema = 'your_schema'
AND table_name = 'your_table'