lowka commented on code in PR #6530:
URL: https://github.com/apache/ignite-3/pull/6530#discussion_r2343351223


##########
modules/jdbc/src/main/java/org/apache/ignite/internal/jdbc2/JdbcResultSet.java:
##########
@@ -0,0 +1,1809 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite.internal.jdbc2;
+
+import java.io.InputStream;
+import java.io.Reader;
+import java.math.BigDecimal;
+import java.net.URL;
+import java.sql.Array;
+import java.sql.Blob;
+import java.sql.Clob;
+import java.sql.Date;
+import java.sql.NClob;
+import java.sql.Ref;
+import java.sql.ResultSet;
+import java.sql.ResultSetMetaData;
+import java.sql.RowId;
+import java.sql.SQLException;
+import java.sql.SQLFeatureNotSupportedException;
+import java.sql.SQLWarning;
+import java.sql.SQLXML;
+import java.sql.Statement;
+import java.sql.Time;
+import java.sql.Timestamp;
+import java.util.Calendar;
+import java.util.Map;
+import org.apache.ignite.internal.jdbc.proto.SqlStateCode;
+import org.apache.ignite.internal.lang.IgniteExceptionMapperUtil;
+import org.apache.ignite.internal.util.IgniteUtils;
+import org.apache.ignite.sql.ResultSetMetadata;
+import org.apache.ignite.sql.SqlRow;
+
+/**
+ * JDBC ResultSet adapter backed by {@link org.apache.ignite.sql.ResultSet}.
+ */
+public class JdbcResultSet implements ResultSet {
+
+    private static final String UPDATES_ARE_NOT_SUPPORTED = "Updates are not 
supported.";
+
+    private static final String SQL_STRUCTURED_TYPE_ARE_NOT_SUPPORTED = "SQL 
structured type are not supported.";
+
+    private static final String SQL_SPECIFIC_TYPES_ARE_NOT_SUPPORTED = 
"SQL-specific types are not supported.";
+
+    private final org.apache.ignite.sql.ResultSet<SqlRow> rs;
+
+    private final Statement statement;
+
+    private Map<String, Integer> columnOrder;
+
+    private int fetchSize;
+
+    private SqlRow currentRow;

Review Comment:
   Thanks. Fixed.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to