Customer Portal

Comments 2

  • Avatar
    kalisp
    0
    Comment actions Permalink
    I assume that you have column in the database as 'INT UNSIGNED', I found out on Google that mysql jdbc driver could have some issues with this, I cannot say more about it, that would be a question for developers, but for now I think you could try workaround and explicitly cast that column to bigint (and keep field metadata as 'long') .

    Something like:
    select cast(field1 as unsigned) from test.TestInt


    Hope this helps.
  • Avatar
    pg13
    0
    Comment actions Permalink
    Thank you for the information, kalisp.

    I do not fully understand how, but this workaround seems to have alleviated the issue. I thought that the column being too large an INT was the problem, but instead we have forced it to be larger and now it works?

    Regardless, I appreciate the help.

    Thanks again.

Please sign in to leave a comment.