Tagged Questions

0
votes
1answer
178 views

Android: how to sum real values from Sqlite?

I've got the following code to get a sum of real values (debt amounts stored in an SQlite DB: public double getsumdebt() { Cursor mCursor = db.rawQuery("SELECT SUM(CurrentAmount) FROM ...
0
votes
2answers
1k views

DateTime to Single with C#

I'm trying to build an interface between iTunes e MediaMonkeys. When I imported my tracks from iTunes to MM, the field LastPlayed wasn't considered. So I decided to build an interface that reads the ...