table metaData

2015-10-02 Thread Hafiz Mujadid
Hi all! How can i get table metadata like column types in phoenix using phoenix jdbs? thanks

Re: table metaData

2015-10-02 Thread Konstantinos Kougios
I didn't try the jdbc getMetaData methods. If those don't work, you can always query the system tables, i.e. : select * from system.catalog; On 02/10/15 21:26, Hafiz Mujadid wrote: Hi all! How can i get table metadata like column types in phoenix using phoenix jdbs? thanks

Re: table metaData

2015-10-02 Thread James Heather
ds. If those don't work, you can > always query the system tables, i.e. : > > select * from system.catalog; > > > On 02/10/15 21:26, Hafiz Mujadid wrote: > >> Hi all! >> >> How can i get table metadata like column types in phoenix using phoenix >> jdbs? >> >> thanks >> > >

Re: table metaData

2015-10-02 Thread Hafiz Mujadid
On 2 Oct 2015 21:29, "Konstantinos Kougios" > wrote: > >> I didn't try the jdbc getMetaData methods. If those don't work, you can >> always query the system tables, i.e. : >> >> select * from system.catalog; >> >> >> On 02/10/15 21:26, Hafiz