Skip to content
Advertisement

java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Boolean, using Table.addRow() with Jackcess

I am trying to write some values in a MS Access database using Jackcess. My values are originally represented using String. The code I am using is the following:

JavaScript

A basic example which does not work is the following (routine data is described using JSON). In this case the routine stops when trying to insert BOOLEAN values (HasM, HasZ) but it is able to insert DOUBLE values – which are all given as parameters to Table.addRow() function as a String array.

JavaScript

The preceding JSON represents the internal representation of data used by my program and it is structured in this way:

JavaScript

In case it is not clear ask me,

Thanks

Advertisement

Answer

Jackcess normally expects to work with strongly-typed Java objects. In this case Jackcess must be trying to be helpful by automatically converting a String to a Double when adding the Row. For whatever reason, Jackcess is not willing to automatically convert a String to a Boolean*, even if that conversion seems obvious (to us), so for a table with fields

ID: AutoNumber, Primary Key
DoubleField: Numeric(Double)
YesnoField: Yes/No

the following code will throw the exception you are seeing

JavaScript

However, this will work

JavaScript

As a general rule it is best to try and use objects of the correct type when working with Jackcess to avoid little “surprises” like this, so by rights we really should be using

JavaScript

* Edit: 2015-03-21

Automatic conversion of String values to Boolean was added to Jackcess 2.0.9, released today.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement