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 8091063
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T19:56:18+00:00 2026-06-05T19:56:18+00:00

I am trying to find if the username exists in the database, if it

  • 0

I am trying to find if the username exists in the database, if it exists then a boolean variable will be set to true if not it will be set to false. It seems like the variable always set to true even when the username does not exist in the table. I have checked the data in the table and tried many times but the variable is always set to true and the message “Username exists” is always shown no matter if the username is in the database or not. This is my code. What am I doing wrong?

—-Login Class that that defines the buttons and edit text fields and fires message when login button is clicked————-

public class Login extends Activity{
Button sqllogin;
EditText sqlusername, sqlpassword;

 @Override
    protected void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    sqlusername = (EditText) findViewById(R.id.etuname1);
    sqlpassword = (EditText) findViewById(R.id.etpass);


    sqllogin = (Button) findViewById(R.id.bLogin);
    sqllogin.setOnClickListener(new View.OnClickListener() {

            //Method that fires a message when the Login button is clicked

        public void onClick(View v) {
            switch (v.getId()){
            case R.id.bLogin:
            String username = sqlusername.getText().toString();
            String password = sqlpassword.getText().toString();

            DBAdapter entry = new DBAdapter(Login.this); 
            entry.open();
            boolean r = entry.findUsername(username);
            if(r == true){
                Toast.makeText(Login.this, "Username Exists", Toast.LENGTH_LONG).show();
            }
            else{
                Toast.makeText(Login.this, "Username does not Exists", Toast.LENGTH_LONG).show();
            }
            entry.close();
            break;
        }
      }
    });
 }
 }

———Method in DBAdpater class that check if username exists in the table————

public boolean findUsername(String username) {
Cursor c = ourDatabase.query(true, DATABASE_TABLE_L, new String[] {
        KEY_USERNAME, KEY_PASSWORD}, KEY_USERNAME + "='"
        + username +"'", null, null, null, null, null);
if (c!= null) {
    return false;
}
else{
    return false;
}
}
  • 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-06-05T19:56:20+00:00Added an answer on June 5, 2026 at 7:56 pm

    Instead of checking to see if cursor is null try checking if cursor contains any data, for example:

    if(cursor.getCount()!=0)
       return false;
    else
       return true;
    

    getCount() returns the number of rows returned by the query.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to find every instance of @username in comment text and replace it
I'm trying to find the CN of a username by searching for the employeeID
Trying to find a standard. The CmdLet will process data - multiple input, defined
im trying to find a way to post username and password using json rather
Below is my code which I am trying to find 'Username Ok' in the
I have been trying to find a bookmarklet that will allow you to view
Trying to find a way to remove blank pages from a document I wrote
Trying to find out if it's possible to use SQLAlchemy on Heroku. Thanks.
Trying to find the best way of create an overlap/overlay layer to fill the
Trying to find a good name for a method swapping each coordinate X and

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.