Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have table expense:

"create table " + Expense.TABLE_NAME + "("
                + Expense.ID
                + " integer primary key autoincrement not null, "
                + Expense.CATEGORY_ID + " integer, " + Expense.ITEM
                + " text, " + Expense.PRICE + " real, " + Expense.DATE
                + " date, " + Expense.TIME + " time);";

And I want to select Expense.PRICE where Expense.DATE = current day/week/month. I tried to do this

cursor = mDB.rawQuery("select " + Expense.PRICE + " where "
                + " (strftime('%W', " + Expense.DATE + "))" + "=" + week,
                null);

where week is week = calendar.get(Calendar.WEEK_OF_YEAR); but it gives an error in cursor:

09-15 09:32:02.647: E/AndroidRuntime(18939): Caused by: java.lang.NullPointerException

09-15 09:32:02.647: E/AndroidRuntime(18939): at com.pllug.summercamp.expensemanager.DataAdapter.getPrice(DataAdapter.java:242)

share|improve this question
A NullPointerException has nothing to do with dates; please show the code around line 242 of DataAdapter.java. – CL. Sep 15 '12 at 9:46
(BTW: not null is not necessary for a primary key column.) – CL. Sep 15 '12 at 9:47
1  
Please note that strftime %W returns a string containing two digits; ensure that week has the same format. – CL. Sep 15 '12 at 9:49
` public List<Double> getPrice(int week) { mDB = dbHelper.getReadableDatabase(); Cursor cursor = null; try { cursor = mDB.rawQuery("select " + Expense.PRICE + " where " + " (strftime('%W', " + Expense.DATE + "))" + "='" + String.valueOf(week) + "';", null); } catch (Exception e) { Log.e("ERROR", "error" + e.toString()); e.printStackTrace(); } List<Double> price = new ArrayList<Double>(); for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {// here logcat show a mistake price.add(cursor.getDouble(0)); } mDB.close(); return price; }` – vovaxo Sep 15 '12 at 9:56
2  
Don't you need a 'from' in your query to specify with table you re working with? – user1666959 Sep 15 '12 at 10:15
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.