roscopeco / ormdroid

ORMDroid is a simple ORM persistence framework for your Android applications.
http://roscopeco.github.io/ormdroid/
Apache License 2.0
86 stars 24 forks source link

Boolean values are not mapped correctly #2

Closed roscopeco closed 11 years ago

roscopeco commented 11 years ago

TypeMapper maps Boolean values using NumericTypeMapping, which does not correctly handle their conversion to SQL TINYINT values. Instead, they are converted directly to the string representation (i.e. 'true' or 'false') which cause SQL errors.