Has anyone been able to get Long Integers to work with a SQLite DB on Android?
In particular, I am noticing some odd behavior with Webkit's Cache Database. The "expires" column is always 0. After doing some testing, I realized that SQLite will accept a value in the "expires" column up to (2^31 - 1). Anything higher than this, and the value is always 0. The cache database uses Date.getTime() to populate this field. Since this is a long, the value is always 0. Is this a bug in the Cache Database or the SQLite implementation? Jeff -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe, reply using "remove me" as the subject.

