Running into an issue where i have an underlying sql server with a DateTime
field. That is loaded into a class that has DateTime field in .net. I set
the class field to its value like this from the data reader

 value = dataReader.GetDateTime(ordinal);

the load code uses  GetDataStreamer and completes without any exceptions
raised by ignite or my code. When the table is queried no records are
loaded.

here is the table meta from ignite rest. The column in question is
RECORD_VALID_FROM

{
  "tablename": "ESG_Focus",
  "fields": [
    {
      "name": "COMPANYID",
      "datatype": "java.lang.Integer"
    },
    {
      "name": "ESG_FOCUS_ITEM",
      "datatype": "java.lang.String"
    },
    {
      "name": "ESG_FOCUS_VALUE",
      "datatype": "java.lang.String"
    },
    {
      "name": "ID",
      "datatype": "java.util.UUID"
    },
    {
      "name": "RECORD_VALID_FROM",
      "datatype": "java.sql.Timestamp"
    }
  ],
  "indexinfo": []
}


server version is 2.6



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

Reply via email to