Re: Fetch column names in sql query results

2018-10-01 Thread Ilya Kasnacheev
Hello! I don't think it is possible with SqlFieldsQuery even in Java. I'm afraid the best course of action for you is just use JDBC API. I'm pretty sure that .Net JDBC is available somewhere. Regards, -- Ilya Kasnacheev пн, 1 окт. 2018 г. в 10:57, wt : > hi > > I am on 2.6 using the .net

Re: Fetch column names in sql query results

2018-10-01 Thread wt
hi I am on 2.6 using the .net api and there are is no metadata object on the result set even though this was said to have been added in 2.1. I could use the rest service but would prefer to use the api. can anyone advise if this is possible with SqlFieldsQuery? -- Sent from:

Re: Fetch column names in sql query results

2017-07-03 Thread vkulichenko
There is no way to do this in 2.0. You'll have to wait for 2.1. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Fetch-column-names-in-sql-query-results-tp14089p14277.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Fetch column names in sql query results

2017-06-27 Thread Megha Mittal
Hi, I am using : QueryCursor> cursor = itemCache.query(new SqlFieldsQuery(query)); Please let me know is there any way of fetching column names in ignite-2.0.0 . -- View this message in context:

Re: Fetch column names in sql query results

2017-06-27 Thread Yakov Zhdanov
Megha, this will be available in 2.1. You can see the ticket for details - https://issues.apache.org/jira/browse/IGNITE-5252 --Yakov

Re: Fetch column names in sql query results

2017-06-27 Thread Taras Ledkov
Hi, Lets clarify. Do you use IgniteCache#query(SqlFieldsQuery) that returns FieldsQueryCursor and FieldsQueryCursor#getColumnsCount() returns zero? On 27.06.2017 9:03, Megha Mittal wrote: Hi, I am using Ignite-2.0.0 and facing problem while using sql query. I need to fetch column names