Hello Everyone,
I am having a rather strange issue with an update statement. I am using a preparedstatement to execute and update statement and passing 3 parameters (UUID, String, int). when I execute the update i get this error
"org.h2.jdbc.JdbcSQLDataException: Data conversion error converting "UUID to BOOLEAN"; SQL statement:
UPDATE MARKET_GLOBAL SET BUYER =? AND BUYER_NAME =? WHERE ID =? [22018-200]"
I have confirmed the variable being passed into the UUID is not null, and that the field type is declared as UUID.
To make things more interesting, i created a new method ("test()") and replicated the code, then passed the same variables via this method and it worked. i then called the failing method within the same run instance and it failed.
Any help is greatly appreciated.
-Caltinor