I'm in the process of migrating my datastore from Oracle to Ignite for
serving the data to one of the search microservice. I have migrated the data
successfully, but upon accessing the data using Ignite JDBC API , I'm facing
one difficulty. All our current JDBC call is fetching the data from the
resultset using Column alias name like
resultSet.getString("columnNameA");
resultSet.getString("columnNameB");
But I'm not able to get the result from Ignite JDBC api with this . I can
only fetch the data using
resultSet.getString(1) - using column index.
Is there some way I can get the result using Column name. Else I have a
major code rework .
Any help is highly appreciated
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/