Hi,

Just to clarify, the same result I have while running using the thin JDBC
driver.

        Class.forName("org.apache.ignite.IgniteJdbcThinDriver");


        try (
            Connection conn =
DriverManager.getConnection("jdbc:ignite:thin://localhost:10800");
            PreparedStatement preparedStatement =
                conn.prepareStatement(
                    "EXPLAIN SELECT FID,FNUMBER FROM
\"customerCache\".CustomerIgniteInfo WHERE FUSEDSTATUS = 3"
                );
            ResultSet resultSet = preparedStatement.executeQuery();
        ) {
            while (resultSet.next())
                System.out.println(resultSet.getObject(1));
        }



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to