You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Konstantin Orlov (Jira)" <ji...@apache.org> on 2020/05/12 11:50:00 UTC

[jira] [Created] (IGNITE-13002) Supports user's java object by JDBC thin client

Konstantin Orlov created IGNITE-13002:
-----------------------------------------

             Summary: Supports user's java object by JDBC thin client
                 Key: IGNITE-13002
                 URL: https://issues.apache.org/jira/browse/IGNITE-13002
             Project: Ignite
          Issue Type: Improvement
          Components: sql
            Reporter: Konstantin Orlov
            Assignee: Konstantin Orlov


Now JDBC thin client doesn't support no-SQL types.
e.g.:
{{CREATE TABLE TEST (ID INT PRIMARY KEY, VAL OTHER)}}
{code}
PreparedStatement stmt = conn.prepareStatement("INSERT INTO TEST VALUES(?, ?)")
stmt.setInteger(1, 0);
stmt.setObject(2, new MyClass());
{code}

We have to support {{GridBinaryMarshaller}} for the JDBC thin client.




--
This message was sent by Atlassian Jira
(v8.3.4#803005)