OK, this is the problem:
>  `IdmerchantPS` bigint(20) unsigned NOT NULL default '0',

The bigint unsigned is weirdly handled by mysql, which returns a BigInteger java type instead of a regular BigDecimal.
The quickest workaround is to remove this 'unsigned'
If you can't, you will have to hack sequoia code in order to cast BigInteger to BigDecimals in ResultSet retrieval

Second potential issue:

  `Enabled` tinyint(1) NOT NULL default '0',

Did you put tinyint1isBit=false in the backend url of you vdb.xml ?
ie:
url=""mail-highlight-id"
 style="background-color: yellow;">tinyInt1isBit=false

Cheers,
Gilles.



_______________________________________________
Carob mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob

Reply via email to