Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6809009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:01:47+00:00 2026-05-26T20:01:47+00:00

I have database called wisherDB, and I have a table called tbltasks inside the

  • 0

I have database called wisherDB, and I have a table called tbltasks inside the database.

The Table simply has colmmn names of id, title, name, date, time, and type. I want to get id, name, and the time to relate to the current date, and I can access current date by a Calendar class, so that is not the problem.

The selection code is in a seperate class called DataAccess and code is mentioned below.

What I want to do is get the details from the query and display it on the tableview. I tried this without selection of date[where clause][that means select * from …] that is working for this.

But with the selection, it’s not showing the data.

DatabaseAccess class Select query:

public Cursor getTasktoDate(String Date) throws SQLException
{
    Cursor mCursor=db.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,KEY_TASKNAME,KEY_TASKTYPE}, KEY_TASKDATE+"="+ Date, null, null, null, null, null);
    if(mCursor!=null)
    {
        mCursor.moveToFirst();
    }
    return mCursor;
}

And this is the code of the activity:

    Cursor c=dba.getTasktoDate("2011/10/12");
    if (c.moveToFirst())
    {
      do {
        DisplayContact(c, tltodaytask);
      } while (c.moveToNext());
    }
    dba.Close();
}

private void DisplayContact(Cursor c, TableLayout tltodaytask) {
    // TODO Auto-generated method stub
    String id=c.getString(0);
    String tName=c.getString(1);
    String tType=c.getString(2);
    insertRow(tltodaytask,id,tName,tType);
}

private void insertRow(TableLayout tltodaytask, String id, String tName,
        String tType) {
    // TODO Auto-generated method stub
    final TableRow newrow = new TableRow(this);

    addTexttoRowswithValues(newrow, id);
    addTexttoRowswithValues(newrow, tName);
    addTexttoRowswithValues(newrow, tType);
    tltodaytask.addView(newrow);
}

private void addTexttoRowswithValues(TableRow newrow, String text) {
    // TODO Auto-generated method stub
    TextView textview = new TextView(this);
    textview.setWidth(115);
    textview.setText(text);
    newrow.addView(textview);
}

This method not working.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:01:48+00:00Added an answer on May 26, 2026 at 8:01 pm

    You have problem in

    Cursor mCursor=db.query(true, DATABASE_TABLE, 
            new String[] {KEY_ROWID,KEY_TASKNAME,KEY_TASKTYPE}, 
            KEY_TASKDATE+"="+ Date, null, null, null, null, null);
    

    You should use

    Cursor mCursor=db.query(true, DATABASE_TABLE, 
            new String[] {KEY_ROWID,KEY_TASKNAME,KEY_TASKTYPE}, 
            KEY_TASKDATE+"= ?", new String[]{Date}, null, null, null, null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a database table called posts that has 'id, title, slug and content'
In mysql database i have this column called: Name: Date Type: datetime I have
I have a database table called users This table has two columns (that are
I have a MySQL database called bookfeather. It contains 56 tables. Each table has
I have a table in my MySQL database called Sponsors . This table has
I'll explain my problem: I have a database table called country . It has
Say I have a database called Poll and have these two table structures. poll
I have a database table called Posts which stores all the information regarding an
I have a simple database table called Entries: class CreateEntries < ActiveRecord::Migration def self.up
Lets say I have a table in a sql server 2000 database called TransactionType:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.