Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Sqlite with Java using SQLiteJDBC. When querying sqlite, I've found out that these two return different things:

String str = result.getDouble("field_name").toString();
String str = result.getString("field_name");

The latter implicitly rounds up the digit of the REAL number in sqlite, and converts it to String. The former doesn't do the round up thing. Is this a bug of sqlite JDBC implementation or is this a common sense in SQL queries?

share|improve this question
BTW, what do you mean by REAL number? Is it getting converted to integer before finally converted to string? – Adeel Ansari Nov 22 '10 at 5:13
sqlite's data type is not type-safe, and does not conform to sql standard. this is intentional as this is a lite database. – J-16 SDiZ Nov 22 '10 at 5:34
1  
@Adeel Ansari: REAL is a data type of SQLite, which doesn't have DOUBLE or FLOAT instead. – Felix Chan Nov 23 '10 at 10:22
Yup got it. Thanks. – Adeel Ansari Nov 23 '10 at 10:23

1 Answer

up vote 2 down vote accepted

No, its not a bug, definitely. In the former, toString() method of Double class is invoked. Whereas, in the latter case, SQLLite implementation is working.

share|improve this answer
+1: SQLite and Java have different code for doing the conversion between IEEE double-precision floats and strings, and that's an operation that it is very hard to get right. – Donal Fellows Nov 22 '10 at 10:54
Thank you. So it is the SQLite implementation of JDBC which trim the REAL value to form a String, right? – Felix Chan Nov 23 '10 at 10:23
@Felix: Yes, precisely. :) – Adeel Ansari Nov 23 '10 at 10:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.